Navigation jumps out of position in IE
Posted: 23 April 2008 07:35 AM   [ Ignore ]
Newbie
Rank
Total Posts:  1
Joined  2008-04-22

I’m working on a site but I’m having a problem with the secondary navigation in Internet Explorer it jumps into an odd position. To sit perfectly in Safari and FireFox I have to position it 10pixels out of position. I’ve used the same code on another site without any of these problems.

To see what I mean look at http://www.chippendale.co.uk/course.html It’s the navigation that starts off with Course Home. It sits beautifully in Safari and Firefox but not here.

Any help would be greatly appreciated.

Iain

Profile
 
 
Posted: 18 May 2008 11:20 PM   [ Ignore ]   [ # 1 ]
Newbie
Rank
Total Posts:  2
Joined  2008-05-18

try using conditional comments for ie, for example:

<!--[if lte IE 6]>
    <
link href="/css/ie6-or-less.css" rel="stylesheet" type="text/css">
    <!
[endif]--> 

will load a style specific for ie 6 or less, then in that, use a style with !important to override your regular styles.

Profile