I'd really have to see the page for that. I mean that is if you want to preserve the depressed button functionality, but have it look good. If so, try putting it up somewhere and giving me a link to it. All it needs is the slide show on it. It doesn't even need all the slides, 3 would be fine. But they would have to be representative of the size(s) that the slides actually are.
I'm thinking you could save yourself some trouble because it appears as though you are trying to get the controls on top. There is a configuration option for that:
Code:
slides#.controls_top=1;
But, as I say, I would need to see what you actually have to really know that.
In any case, you could do, after your new inter_slide(slides) call, like:
Code:
<script type="text/javascript">
//Notes on Parameters: The only required parameter is the slides_array_name. If Width is used, so must Height.
//Interval is optional too. It is always last, either fourth after Width and Height or second after Slides_array_name.
//Usage: new inter_slide(Slides_array_name, Width, Height, Interval)
new inter_slide(slides, 140, 225)
document.getElementById('prev0').parentNode.className = document.getElementById('next0').parentNode.className = 'noShade';
</script>
And then include something like so in your stylesheet:
Code:
.noShade {
padding: 0!important;
margin: 0!important;
background-color: #fff!important;
border: none!important;
}
Bookmarks