novaweb
I hope you can help me.
I've got the Orbit Slider working as an include. However, I have a strange thing happening.
I resized the nav images (left-arrow.png & right-arrow-png) to better fit my slider.
For some reason that I can't seem to find, there is the text "Right" hovering by my right-arrow.png (see the attached image)
When I Firebug it I get:
<div class="slider-nav">
<span class="right">Right</span>
<span class="left">Left</span>
</div>
I have no idea where the text "Right" and "Left" texts are coming from inside those spans.
Here's my css code:
/* DIRECTIONAL NAV
================================================== */
div.slider-nav {
display: block }
div.slider-nav span {
width: 23px;
height: 30px;
text-indent: -9999px;
position: absolute;
z-index: 1000;
top: 60%;
margin-top: -50px;
cursor: pointer; }
div.slider-nav span.right {
background: url(../images/orbit/right-arrow3.png) no-repeat;
right: 0;
}
div.slider-nav span.left {
background: url(../images/orbit/left-arrow3.png) no-repeat;
left: 0;
}
I've spent the better part of 2 hours trying to get rid of the "Right" text that appears in the browser. For some reason I don't see the "Left" text on the left side.
Any help would be greatly appreciated.
Thanks!