Hi,
Can anyone help me fix the slideshow navigation ?
http://www.masterlink.co.id/slideshow3%281%29.php
First, the navigation is far too far on the left.
Second, how to erase the black bullet next to the round gray button ?
Third, I would like those gray button to be on top of the slideshow just like the 3 gray picture button on top of the slideshow.
slideshow3(1).php
<html>
<style type="text/css">
#slideshow_wrap{ width: 1700px; text-align:center; position:relative;overflow:hidden; height:400px }
#slideshow { margin: 0 0 0 -200px; height: 232px; width: 232px; margin: auto;}
#slideshow img { padding: 15px; border: 1px solid #ccc; background-color: #eee; }
#nav { position: absolute; bottom:30px; left:30px; z-index:50}
#nav li{
float: left;
margin-right:6px;
width: 20px;
}
#nav a {
display: block;
border: 1px solid #CCCCCC;
border-radius: 50%;
width: 12px;
height: 12px;
background-color: green;
background: url(images/buttonnav.png);
background-position:-3px -28px;
}
#nav li.activeSlide a {
background-color: yellow;
background: url(images/buttonnav.png);
background-position: -3px -8px;
}
</style>
<script type="text/javascript" src="js/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="js/jquery.cycle.all.latest.js"></script>
<script type="text/javascript">
$(function() {
$('#slideshow').after('<ul id="nav" />').cycle({
pager: '#nav',
pagerAnchorBuilder: function(idx, slide) {
return '<li><a href="#"></a></li>';
}
});
});
</script>
<div id="slideshow_wrap">
<div id="slideshow">
<img src="http://localhost/ocklaw/images/banner1.png"/>
<img src="http://localhost/ocklaw/images/banner2.png"/>
<img src="http://localhost/ocklaw/images/banner3.png"/>
</div>
</div>
</html>