user1256042
user1256042

Reputation:

NIVO SLIDER Trouble

i am having some loading problems with my slider. http://www.novaprogramming.com Sometimes it loads, and sometimes it does not. I really do not know why.

Upvotes: 0

Views: 298

Answers (1)

Krish
Krish

Reputation: 2660

Your site render like this

<img src="nivo/images/02.png" alt="">

Try the img tag like this

<img src="/nivo/images/02.png" alt="">

In your page remove this code

<script type="text/javascript">

$(document).ready(function() {

    $('#slider').nivoSlider();

});

</script>

its not needed

Upvotes: 2

Related Questions