Instead of making each of your scroller contents like for example (from the demo page):
Code:
pausecontent[1]='<a href="http://www.codingforums.com">Coding Forums</a><br />Web coding and development forums.'
Do them like:
Code:
pausecontent[1]='<div style="text-align: center;"><a href="http://www.codingforums.com">Coding Forums</a><br />Web coding and development forums.</div>'
or, if you want the flexibility of using a style sheet, and a little less code in each content item:
Code:
pausecontent[1]='<div class="scontent"><a href="http://www.codingforums.com">Coding Forums</a><br />Web coding and development forums.</div>'
Then in your stylesheet you can do:
Code:
.scontent {
text-align: center;
}
You could even add other rules there or use container selectors for items inside these divisions.
Bookmarks