I have modified bx.slider to have the thumbnails underneath text content with an image as a background:
http://inetwebdesign.com/jQueryTools/thumbnail_pager_method5.html
The problems I am facing are the following:
- In IE (in Firefox and Opera everything is ok) the thumbs (which are wrapped in anchor tags) still have the blue outline, and no amount of text-decoration:none; or outline:none; appears to solve the problem, and
- In this implementation, clicking on the thumbnail pulls up the corresponding image, but the carousel will only restart if I reload the page.
So my questions are:
- How do you get rid of the text decoration for the anchor tags, and
- How do you get the carousel to restart without having to reload the page?
Thanks.
gachoong
Don’t have IE to try out, but for the
<a>problem withtext-decorationyou should make it work with a CSS such as this:and then apply class
no-txd(or whatever you name it – just change theno-txdin above CSS) to your<a>tags. See demo here:As for the thing stopping, I am not familiar with bxSlider, but from their API page:
there’s a
startShowmethod. If you don’t find a better way, you can add a listener to your<a>and call this method after some time, e.g. usingsetTimeout, such as given here:Of course, this depends on what you want to do, but you should have enough to play around and tweak to your needs.