Quote:
Originally Posted by Mooff
@wombycat
1) How do I remove the text from the slider? I would like to have only the images pulled from the articles.
----------------------
quick and dirty:
Code:
<script type="text/javascript">
$(window).load(function() {
$("#slider").nivoSlider();
});
</script>
replace with
Code:
<script type="text/javascript">
$(window).load(function() {
$("#slider").nivoSlider({
captionOpacity: 0,
});
});
</script>
2) Is it possible to have 2 of these on the same page? I have two atm and the 2nd one is coming up as a blank white box, though if I turn the first one off the 2nd one works flawlessly.
---------------------
you prolly have included two jquery files on the site. Put the jquery in your headinclude and remove that line from both sliders:
Code:
<script type="text/javascript" src="' .$slider_img_filepath. 'jquery-1.6.1.min.js"></script>
Hope i haven't missed a question. Cheers guys.
|
Thank you very much, the support on this is awesome! Donating again