Forum Moderators: not2easy
I have a div that works fine in FF and IE7+ but in IE6 gets bumped, so I am trying to reduce the width in just IE6.
right now I have
.sidebar
{
width:210px
rest of elements here...
}
How can I set the width as 210px in FF and IE7 but as 190px in IE6?
Thanks.
I'd add this in the head of the html
<!--[if IE 6]>
<link rel="stylesheet" type="text/css" href="/ie6.css" />
<![endif]-->
Do make sure you don't have IE6 in quirksmode (use a full doctype with nothing in front of it) and validate your code.