Forum Moderators: not2easy
It shoves a massive gap between the menu items for some reason... there should only be a small margin above each of the main menu items, and all of the sub menu items touch eachother.
[snip]
Any ideas would be much appreciated. thanks
[edited by: createErrorMsg at 4:18 pm (utc) on Feb. 8, 2006]
[edit reason] No URLs, please. [/edit]
shoves a massive gap between the menu items for some reason.
The reason is an IE browser bug, which is triggered by setting links to display block in an ordered or unordered list. The cure is simple enough. Just add display:inline; to the CSS for the LIs in the menu, as in...
#nav li {display:inline;}
This cures the bug in IE with no negative fallout in other browsers.
Oh, and welcome to WebmasterWorld!
cEM