Okay, I figured out how to remove the controls. For anybody interested, edit includes/templates/template_name/common/tpl_home_slider.php.
Find:
<script type="text/javascript">
$(function() {
$('#slides').slidesjs({
width: 590,
height: 332,
play: {
active: true,
auto: true,
interval: '<?php echo RAB_SLIDES_PLAY ?>',
pauseOnHover: true,
restartDelay: 2500
}
});
});
</script>
Change to:
<script type="text/javascript">
$(function() {
$('#slides').slidesjs({
width: 590,
height: 332,
navigation:false,
pagination: false,
play: {
active:
false,
auto: true,
interval: '<?php echo RAB_SLIDES_PLAY ?>',
pauseOnHover: true,
restartDelay: 2500
}
});
});
</script>
BUT, I still have a big gap between the slide and the home page text. Any ideas?