PDA

View Full Version : CSS Help needed



Grant29
05-14-2006, 02:32 PM
Hi,

I just put a new site online, which I've been testing with firefox since it's what I use most of the time. The header looks OK in firefox, but is messed up under IE v6.0.xxx.

If anyone can help, the site is http://www.rssicongallery.com. Is the menu at the top left under "RSS Icon Gallery". When I adjust the sizes in my css file, I can make it look right under IE, but then it looks funky under firefox.

I'm out of ideas on how to fix it with CSS. Any help would be much appreciated.

Thanks,
Grant

Masetek
05-14-2006, 07:01 PM
Get it to look good in FF, then add this code your head tags underneath the line where you import your stylesheet

<!--[if IE]>
<style type="text/css" media="screen">
PUT THE IE CODE HERE
</style>
<![endif]-->

That way it will use the ie code if its ie and the ff code if its ff

:)