CSS problems (IE vs Firefox)

sysgenmedia

New Member
IE and Firefox render certain elements and CSS differently. You're going to have to play around with either the structure of youre page or CSS. I recommend downloading some plugins for Firefox, namely ietab and firebug. IEtab will let you switch firefoxes rendering to IE so you can easily switch back and forth between the two and note your changes. Firebug is good for analyzing the elements on your page. You can actually change the CSS and watch the changes to the page happen on the fly. IE has a similar feature with the developer toolbar.

If you're still can't get them to look the same try making a separate style sheet for IE, http://css-tricks.com/how-to-create-an-ie-only-stylesheet/. It's not the best way to go about it but if it works than great.

Best of luck hope this helps.
 

PixelPusher

Super Moderator
Staff member
what version of IE are you having issues with?

I looked at your site in FF 3.6 and IE8 and they render the same.
 

wwag

New Member
Conditional Statements

You'll probably need to use conditional statements and fix it that way.

ie..."if IE"
 
Top