Forums

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

Home Forums CSS Nivo Slider Image problem! Reply To: Nivo Slider Image problem!

#150484
Paulie_D
Member

What he means is that although they may be linked in your HTML/CSS or <head>, the site can’t find them.

For instance, your have this

<link rel="stylesheet" href="nivo-slider.css" type="text/css">

but it should probably be this

<link rel="stylesheet" href="../css/nivo-slider.css" type="text/css">

Likewise for your images

<img src="images/slide1.jpg" alt="slide1">

might be better as

<img src="../images/slide1.jpg" alt="slide1">

and so on for JS etc.