That's the page. You can see the pagination fade away as soon as you refresh the site!
Index.php:
Code:
<div id="slider1" class="sliderwrapper">
<div id="paginate-slider1" class="pagination" style="z-index:9999;">
</div>
<div class="contentdiv" style="z-index:0;">
<img src="images/highlights/highlight_1.png" />
</div>
<div class="contentdiv" style="z-index:0;">
<img src="images/highlights/highlight_2.png" />
</div>
<div class="contentdiv" style="z-index:0;">
<img src="images/highlights/highlight_3.png" />
</div>
</div>
<script type="text/javascript">
featuredcontentslider.init({
id: "slider1", //id of main slider DIV
contentsource: ["inline", ""], //Valid values: ["inline", ""] or ["ajax", "path_to_file"]
toc: "#increment", //Valid values: "#increment", "markup", ["label1", "label2", etc]
nextprev: ["", ""], //labels for "prev" and "next" links. Set to "" to hide.
enablefade: [true, 0.1], //[true/false, fadedegree]
autorotate: [true, 6000], //[true/false, pausetime]
onChange: function(previndex, curindex){ //event handler fired whenever script changes slide
//previndex holds index of last slide viewed b4 current (1=1st slide, 2nd=2nd etc)
//curindex holds index of currently shown slide (1=1st slide, 2nd=2nd etc)
}
})
</script>
</div>
contentslider.css
Code:
.sliderwrapper{
position: relative; /*leave as is*/
overflow: hidden; /*leave as is*/
width: 600px; /*width of featured content slider*/
height: 300px;
z-index:0;
}
.sliderwrapper .contentdiv{
visibility: hidden; /*leave as is*/
position: absolute; /*leave as is*/
left: 0; /*leave as is*/
top: 0; /*leave as is*/
width: 600px; /*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;
z-index:0;
}
.pagination{
z-index:9999;
font-family:Tahoma, Geneva, sans-serif;
font-size:15px;
padding-left:505px;
padding-top:222px;
width: 200px; /*Width of pagination DIV. Total width should equal slider's outer width (400+10+10=420)*/
}
.pagination a{
padding: 0 10px;
text-decoration: none;
color: white;
background: black;
filter:alpha(opacity=80);
-moz-opacity:0.8;
-khtml-opacity: 0.8;
opacity: 0.8;
z-index:9999;
}
.pagination a:hover, .pagination a.selected{
color:#ffb14b;
z-index:9999;
}
Sorry that I didn't put it in the first post, might be the time. *g*
Hope that helps you more with my problem!
Bookmarks