Forums

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

Home Forums CSS Uploaded images to webserver. Now they won’t display… Re: Uploaded images to webserver. Now they won’t display…

#73198
TheDoc
Member

Your line was:

<img src="../images/background.jpg" style="width: 100%; height: 100%;">

It should be:

<img src="images/background.jpg" style="width: 100%; height: 100%;">

As a side note, you should really be applying that image to the div itself.