Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Netscape does not dispay images

Status
Not open for further replies.

asmith555

Programmer
Oct 7, 2002
97
US
<td><img src=&quot;../images/form_fields/first_name.gif&quot;></td>

any reason netscape wouldn't display this image. Works fine in IE.
 
Minor kvetch: You should put a closing tag on that, as well as height, width, and alt attributes:
Code:
<td><img src=&quot;../images/form_fields/first_name.gif&quot; height=&quot;x&quot; width=&quot;x&quot; alt=&quot;Some text&quot;></img></td>
If I were seeing this in IE and not seeing it in Netscape, the first thing I would check is the path (because the tag as called out, looks fine).

Try a different graphic file in the same directory. If you can see the different file, then your graphic file is the problem. If you can't, then your path is the problem.

Assuming your graphic file is the problem, then check your case! Internet Explorer happily ignores case, so to IE, &quot;BananaFish.gif&quot; is the same as &quot;bananaFISH.gif&quot; and you and I both know they're not. Netscape knows they're not, too.

If I had a nickel for every otherwise-clever Developer who said &quot;Ooooooh, case matters?!&quot; I'd have, well, maybe twenty cents, but it would be twenty cents that I ought never to have acquired.

Good luck!

Edward &quot;Cut a hole in the door. Hang a flap. Criminy, why didn't I think of this earlier?!&quot; -- inventor of the cat door
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top