Forum Moderators: not2easy
I am having the most weird problem at the moment with my recent coding, I don't even know if it's a css issue. This test page - <url removed> - should have am image of a chair just randomly plonked in to see if it works and it just doesn't show up. The image is uploaded to the /images folder as chair.gif and it's referenced right. Can anyone help?
Ellie
[edited by: encyclo at 12:22 am (utc) on April 1, 2008]
[edit reason] no personal URLs please, see posting guidelines [/edit]
instead of...
<img src="/images/chair.gif"
<img src="./images/chair.gif"
birdbrain
actually, what I should have posted was...
instead of...<img src="/images/chair.gif"
...try it like this...
<img src="images/chair.gif"
No need for the period, just remove the forward slash. ;)
birdbrain