It seems IE 7 is not rendering the lists inline. Any help?
+1
A:
I don't believe IE7 recognizes display: table
and table-cell
.
Use a different means of making a horizontal menu if you need it IE7 compatible.
Scott
2010-07-15 15:02:31
+1
A:
You are using display:table-cell for the list-items. That's CSS2 and I'm pretty sure that it's not supported by IE7.
xor_eq
2010-07-15 15:03:04
A:
As the other 2 answers said, IE won't recognize display table. You probably want to say display:inline and list-style:none
Capt Otis
2010-07-15 15:32:36