By default content that exceeds the height of the Featured Content Slider box should be clipped. This is due to the following setting in red inside contentslider.css:
Code:
.sliderwrapper{
position: relative; /*leave as is*/
overflow: hidden; /*leave as is*/
border: 10px solid navy;
border-bottom-width: 6px;
width: 400px; /*width of featured content slider*/
height: 250px;
}
Now, if you've modified the above, then the result will start to vary. Now, based on the default CSS, if you wish longer content to be scrollable, you can add the code in red to this default CSS portion:
Code:
.sliderwrapper .contentdiv{
visibility: hidden; /*leave as is*/
position: absolute; /*leave as is*/
left: 0; /*leave as is*/
top: 0; /*leave as is*/
padding: 5px;
background: white;
width: 390px; /*width of content DIVs within slider. Total width should equal slider's inner width (390+5+5=400) */
height: 100%;
overflow: scroll;
overscroll-x: hidden;
filter:progid:DXImageTransform.Microsoft.alpha(opacity=100);
-moz-opacity: 1;
opacity: 1;
}
Bookmarks