PDA

View Full Version : Css issues in IE


melissa99
02-25-2009, 07:33 AM
hi all,

I am building a site and in ff3 everything looks coolbut in IE 6 it looks messed up
the left navigation starts really low down the screen anyone how to fix this in IE.

Thanks

convalescent
07-09-2009, 11:59 AM
bit of a vague description.

BUT generally speaking it best to separate your CSS files for different browser types

eg: <!--[if gte IE 7]><link href="css/ie-main-styles.css" rel="stylesheet" type="text/css"><![endif]-->

this above example is targeting IE 7 and later

although this means you might have replicate and tweak your CSS and work with multiple CSS files; at least you know you are directly addressing the browser type and can tweak it as necessary.