Ah I think I see what the problem is. In your CSS, you've removed certain styles associated with the .contentdiv class. Inside contentslider.css you have:
Code:
.sliderwrapper .contentdiv{
visibility: hidden; /*leave as is*/
left: 0; /*leave as is*/
top: 0; /*leave as is*/
padding: 5px;
background: white;
width: 950px; /*width of content DIVs within slider. Total width should equal slider's inner width (390+5+5=400) */
height: 487px;
display:none;
filter:progid:DXImageTransform.Microsoft.alpha(opacity=100);
-moz-opacity: 1;
opacity: 1;
display: none;
}
It's missing position:absolute, which must be present. Here's the default code:
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%;
filter:progid:DXImageTransform.Microsoft.alpha(opacity=100);
-moz-opacity: 1;
opacity: 1;
}
Bookmarks