Mooff, thank you again. I have wanted this on my site for ages and on one rainy sunday morning I was able to add it and have it completely working and customized to my wants in a matter of hours. Support like this is what makes VB great.
FYI in the css file my code looked like this
Code:
.theme-uf .nivo-controlNav a {
display:block;
width:22px;
height:22px;
background:url(nivo_slider_sprite.png) no-repeat;
background-position:0 -30px;
text-indent:-9999px;
border:0;
margin-right:3px;
float:left;
}
Which is different from the code you showed above. So I simply changed it to this
Code:
.theme-uf .nivo-controlNav a {
display:block;
width:22px;
height:22px;
background:url(nivo_slider_sprite.png) no-repeat;
background-position:0 -30px;
text-indent:-9999px;
border:0;
margin-right:3px;
float:left;
top: -120px;
}
Not a real issue, but I wanted to point it out for others that may be looking to make this same change, and aren't sure about where to make it.