rotator comment and question
Using Jamroom
Nobody's going to stick around while 100 slides rotate. Better to set it to a lower number on random so randomly show 10 slides that change when the cache refreshes.
If you want to turn the pager off, you can do that at:
ACP -> SITE BUILDER -> CONSTRUCTION KIT -> TEMPLATES -> rotator.tpl -> MODIFY
Change:
pager: true,pager: false,to hide the numbers.
The slider is this one: http://responsiveslides.com/ there is a demo with < and > buttons on the demo page:
http://responsiveslides.com/themes/themes.html
Looks like if you add in nav: true, you'll get the buttons your after. Need to put a bit of CSS on there to make them look nice though.
$("#s{$unique_id}").responsiveSlides({
auto: true, {* Boolean: Animate automatically, true or false *}
speed: 400, {* Integer: Speed of the transition, in milliseconds *}
timeout: 4000, {* Integer: Time between slide transitions, in milliseconds *}
pager: false, {* Boolean: Show pager, true or false *}
nav: true,
random: true, {* Boolean: Randomize the order of the slides, true or false *}
pause: true, {* Boolean: Pause on hover, true or false *}
maxwidth: 0, {* Integer: Max-width of the slideshow, in pixels *}
namespace: "rslides" {* String: change the default namespace used *}
});
