Wondering
Wondering

Reputation: 5076

jpg image not getting rendered in HTML

I have one jpg image which is getting rendered in FF but not in IE6.

 <img src="Image/warn.jpg" alt="aimage" />

Path is correct as this is working on FF. any clue?

Upvotes: 0

Views: 491

Answers (3)

fesh
fesh

Reputation: 216

try to right-click the image and then click properties, in the properties click the security tab, and in the security tab I think you should just add user group.

Upvotes: 0

Wim ten Brink
Wim ten Brink

Reputation: 26682

Well, the file name would be server-side so it shouldn't matter if you use IE6 or FF or Chrome or Opera. IE6 is probably able to find the file, just not to display it.

With JPG files, there is an option to store it as progressive or as a lossless JPG file. It's likely that this image happens to be in a file format that IE6 just doesn't understand. The lossless JPG format is slightly newer than IE6, I think.

Upvotes: 1

ondra
ondra

Reputation: 9331

Is it really a jpg image, isn't it e.g. PNG with wrong suffix? Have you tried to use directly the url of the jpeg image?

Upvotes: 0

Related Questions