Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

why is this jpg image not showing up in IE 7 and 8

for some reason this image, which is a jpg isn't showing up in IE7 or 8... here is the php:

<img src="<?php echo get_option('logo');?>" alt="logo" height="70px" width="405px" />

and the output (which doesn't end the image tag for some reason):

<img src="http://guardianweb.edulence.com/fosterklima/wp-content/uploads/2012/04/guardian-4-color.jpg" alt="logo" height="70px" width="405px">

live url: http://guardianweb.edulence.com/fosterklima/

EDIT*** the image has been resized to 400 x 70 and still isn't working...

like image 978
Kegan Quimby Avatar asked Feb 21 '23 16:02

Kegan Quimby


1 Answers

Although this article is rather old, it might be of use.

If the JPG image was saved using CMYK instead of RGB it may have trouble displaying. It looks like the older versions of IE (and Firefox) have a problem with this.

like image 188
Jeff B Avatar answered Feb 27 '23 01:02

Jeff B