I hope this is easy. I’m trying to setup slideshow 3 (rasite profile) using teline 4.
It’s all set, except I want to use a 2px black border around the thumbs, which is working. Now I want to set up a 2px #fc0 border around the .active thumbs.
That’s working too, but as you can see, it’s bording the entire element, padding, black border, everything.
What I did –
in mod_jaslideshow.css
1 – deleted (I also want to get rid of the arrow-bg2 image in .active)
.ja-slidewrap_rasite .ja-vertical_right .active {
background: url(arrow-bg2.gif) no-repeat center right;
}
2 – added
.ja-slidewrap_rasite .ja-vertical_right .active {
border: 2px solid #fc0;
}
3 – added
.ja-slide-thumb img {
border: 2px solid #000;
}
Thanks for your help