December 15, 201015 yr Hey there every one. I have this problem. I created a webpage using dreamweaver and did a live preview. It appeared correctly but when I previewed in firefox nothing appears. It uses a css style sheet as well. The images links are /images/image.png format and wen I preview only the alternate text appears no pics! This started happening today. I did many web pages before with out any trouble and worked fine. Pls some one help out. thnx in advance.
December 15, 201015 yr It sounds like an incorrect path, but we don't have your code to check. /images/image.png is a root-relative link which should work online by going back to the root directory and finding the images directory. It won't work from your local file because your root directory on your computer is probably C:\ with a lot of other folders following that, so it won't show locally. Either use an absolute url http://www.yourdomain/images/image.png or use a relative path images/image.png (with no / in front) assuming that images directory is inside the directory with the html file.
Create an account or sign in to comment