Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Slides not sliding, just stacking. Re: Slides not sliding, just stacking.

#95552
Mottie
Member

I can’t tell what it does either, but since we added the noConflict, this code needs to change… change the “$” into “jQuery” to fix that one error.

$(document).ready(function() {
$('#featured .scroll').quovolver(1, 10000);
});

change to:

jQuery(document).ready(function() {
jQuery('#featured .scroll').quovolver(1, 10000);
});

So now it looks like AnythingSlider should be running, but it could just be the above error preventing further down code from running, so we’ll just need to see if the above change fixes everything or what the next step needs to be.