where is cinema template ?

More
12 years 1 month ago #25737 by leatherboy
You have the same problem in hot cinema demo page. When you try to resize the window from narrow to wider the shadow moves but If you refresh the page (F5) it works fine. In my page this refresh trick don't work.

leatherboy wrote: please look at the site.
The body width is 1200px.
If you see the page in a wider screen you can't see the shadows left and right and the black space between the previous and the centersd image and between the centered and the next.If you resize the window of your browser and you make it about 1200 px the you will see the shadows and these black spaces.
It seems that I have to change this in modules/mod_hot_full_carousel/tmpl/style.css

.shade_left,.shade_right {
/*background:rgba(255,255,255,0.7);*/
z-index: 3;
position:absolute;
width: 100px;
height: 400px;
}

This width 100px counts from the sides of the viewable window.
How can I change it to count from the left and right end of the centered image?

Please Log in to join the conversation.

More
12 years 1 month ago - 12 years 1 month ago #25750 by ivan.milic
Try this:

.shade_left, .shade_right{
width:110px!important;
}
Last edit: 12 years 1 month ago by ivan.milic.

Please Log in to join the conversation.

More
12 years 1 month ago #25765 by leatherboy
No, it didn't work.
Please tell me. Did you check my site and your demo page for cinema?
Resize the browser window to determine the problem.
If you have a fullhd monitor 1980x1200 and you visit my page for example, with browser's window fullscreen you will see the carousel without shades left and right. If you resize browser's window you will see the shadow when the width will be about 1200px.

Please Log in to join the conversation.

More
12 years 1 month ago #25780 by ivan.milic
Ok remove that. Go to:

\modules\mod_hot_full_carousel\tmpl\default.phpyou will see:

var shadeWidth = (bodyWidth-996)/2;
jQuery('.shade_left, .shade_right').css('width',shadeWidth)

change that to :

var shadeWidth = parseInt((bodyWidth-960)/2);
jQuery('.shade_left, .shade_right').css('width',shadeWidth);
jQuery(window).resize(function(){
jQuery('.shade_left, .shade_right').css('width',parseInt((bodyWidth-960)/2) + 'px');
});

note that 960 is with of images, so if you change that also change that value there

Please Log in to join the conversation.

More
12 years 1 month ago #25823 by leatherboy
Ivan thanks for the efforts, but I have a lot other problems with menu and othe positions. I will try in another folder a clean install and I will ask you again If I find any problem.
Thanks again

Please Log in to join the conversation.

More
12 years 1 month ago #26365 by leatherboy
Hi. I istalled it again (clean install) and as you could see it works better.
Please try to solve 2 errors for me.
Star rating it is not working and I can't align topmenu at right. I did tries in layout.css but it is pointless.
Thanks

Please Log in to join the conversation.

Time to create page: 0.090 seconds
Powered by Kunena Forum