How to get this to work in IE

Soldato
OP
Joined
5 Feb 2006
Posts
3,524
sorry guys, when looking at it in IE 6-8 ( i think ) it doesnt display as a menu bar, rather it just shows the list elements, the links work, but it looks really rather messy.

reason being i need to work this out is its a finance site and it seems a lot of banks and finance institutions use old and dilapidated software
 
Soldato
Joined
18 Oct 2003
Posts
19,413
Location
Midlands
I think your actual problem there is the use of inline-blocks on the list elements. Try replacing that and adding a float to get it crudely working. You'll then need to tweak some widths no doubt.
Code:
nav ul li {
display: block;
float: left;
}
 
Back
Top Bottom