You can replace both the default pagination text links and the "foward" link with your own images instead by making use of the 3rd and 4th parameters of ContentSlider:
Code:
ContentSlider(slider_ID, [autorotate_time], [custlinktext], [customnextlinktext])
For example:
Code:
var linktext=["<img src='1.gif' />", "<img src='2.gif' />", "<img src='3.gif' />", "<img src='4.gif' />"]
var nexttext="<img src='forward.gif' />"
ContentSlider("slider1", 5000, linktext, nexttext) //Auto rotate slider with custom pagination and "Next" links text
That should do it.
Bookmarks