I have a site w about 10 main web pages.If I open an html page and preview in browser it's fine. If i open it from a linked buttom from another pg then all my graphics are missing w ? marks.
Are you using Dreamweaver to upload your web pages to the server? If not, I would make sure that your file structure is the same on your local and remote site. If so, have you tried synchronizing your site to make sure that those files are there and in the correct location?
Hope this helps! :-V
Thanks for the input. I thought that the remote and local site differences might be a problem so I got rid of my remote site files and am testing locally. Also changing my links from site relative to document relative(tho I doubt this is the problem). So far this has not helped. I have relinked all my html pages buttons and reinserted many pages graphics to no avail. I will keep trying. Maybe the next remote upload will be more successful. I am using Netscape 4.76, could this be a browser problem?
I have encountered some strange problems in the past using Netscape. I always use IE. Wouldn't hurt to try previewing in IE and see if the graphics still don't show. You're right, this is an unusal problem. Usually when I see this happen it is just that the page is looking for the graphic in the wrong place. Good Luck!
A friend who is a whiz with html figured it out by looking at my code.
" Inside index.html your links look like this:
>
> <img src="LTH.gif" width="454" height="44" name="Laura"
> border="0" alt="Laura">
>
> Pay attention to the "src" attribute, it is: LTH.gif, this means that
> this image is located in the SAME folder as index.html, they are located at
> the same directory level.
>
> But inside TwoD.html, your links look like this:
>
> <img src="/LTH.gif" width="454" height="44" border="0" alt="Laura
> " name="Laura">
>
> If you look at the "src" attribute, now it is equal to: /LTH.gif, I'm
> pretty sure the server is getting confused with the "/", but I would have to
> take a look at your directory structure to be sure.
>
> Usually, the best thing to do is put all your HTML files inside a folder
> (let's call it "myFiles", and then create another folder inside myFiles and
> name it "images", then you should put all your images (GIF and JPG) inside
> this image folder. This way you will always link to your images like this:
>
> <IMG src="images/myImage.gif">
>
> The problem with DreamWeaver and other web design software is that they use
> different methods to link to graphics, for example, some times they do this:
>
> <IMG src="../images/myImage.gif">
>
> The "../" syntax doesn't work in every web server so you should not use it,
> If for some reason your html files are inside different folders, that can be
> the reason your links to images work on some files but don't work on others.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.