Image loses quality

R

Ronx

Chris K pretended :
In frontpage edit and design mode this image is
very clean


but as you can see - it's loses quality as a
webpage
It has not been increased in size
Is there anything I can do to make sure it
displays as the original

Try saving the original image as a .jpg - the shadow effect requires more shades of grey than a .gif can provide. If transparency is required, save as a .png, but use IE conditional comments to render the .gif version to IE6 users since IE6 cannot render transparent .pngs.

Example:

<!--[if < IE 7]><img src="myimage.gif"><![end if]-->
<![if > IE 6]><img src="myimage.png"><![End If]>

The first line will be ignored by all browsers except IE6 and earlier, the second line will be rendered by all browsers, but ignored by IE6.

--
Ron Symonds - Microsoft MVP (Expression Web)
http://www.rxs-enterprises.org/fp/wf-menu.aspx
Microsoft is closing this newsgroup - for details
of why and where to go see
http://www.rxs-enterprises.org/fp/newsgroup-closure.aspx
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top