Aloha, I have a div element in my header: #features { width:880px; padding-right:18px; margin-top: 10px; float: center; } Everything looks great in Firefox, but the page messes up in IE. I have tracked the problem down to the width line. If I remove the "width:880px" the page looks fine in IE. How can I make sure the width line is only used when the browser is Firefox? Thanks, Mads
Found a solution. PHP script checks the user agent, then use seperate css files depending on the browser.
You can also use conditional comments in CSS for IE, so you can check to see if your visitor is using IE and just remove that line: quirksmode.org/css/condcom.html