- Posts: 58
- Thank you received: 0
where is cinema template ?
-
leatherboy
Inactive member -
Topic Author
- Member
-
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.
-
ivan.milic
Support Staff -
- Moderator
-
- Posts: 14116
- Thank you received: 1639
.shade_left, .shade_right{
width:110px!important;
}
Please Log in to join the conversation.
-
leatherboy
Inactive member -
Topic Author
- Member
-
- Posts: 58
- Thank you received: 0
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.
-
ivan.milic
Support Staff -
- Moderator
-
- Posts: 14116
- Thank you received: 1639
\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.
-
leatherboy
Inactive member -
Topic Author
- Member
-
- Posts: 58
- Thank you received: 0
Thanks again
Please Log in to join the conversation.
-
leatherboy
Inactive member -
Topic Author
- Member
-
- Posts: 58
- Thank you received: 0
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.