Hi, i downloaded firebug and its telling me that there is an error with this part of the code:
<script type="text/javascript">
// initialize slideshow (Cycle)
$(document).ready(function() {
if ($('#Slides').length > 0) {
$('#Slides').cycle({
fx: 'scrollHorz',
speed: 1000,
timeout: 6000,
randomizeEffects: true,
easing: 'easeOutCubic',
next: '.slideNext',
prev: '.slidePrev',
pager: '#slidePager',
cleartypeNoBg: false
});
}
});
</script>
It says the cleartypeNoBg: false part is wrong. Then if i remove tht part of the code it tells me that pager: '#slidePager', part is wrong?
Is there code missing or something? ( i have no clue on how javascript works)
Thanks again