CK wrote:
The client has said the following pages have the menu out of place in
IE...6.029. Can someone offer a solution? The pages validate.
http://working.bushidodeep.com/tacticalware/tos.html
I suggest you look at this CSS-line...
ul#privacy, ul#terms, ul#agreement li{ margin: 0 0 .5em -2em; width: 400px;}
All IE-problems went away when I replaced that line with this...
ul#privacy, ul#terms, ul#agreement li{ margin: 0; padding: 0;}
...and it renders the same in Opera, Firefox and IE6.
However, that navigation can't take any font-resizing in any browser, as
it widens and starts overlapping the main column because of 'em'
paddings used in there.
Changing padding on anchor to this...
div#navigation ul#navlist li a{padding: 0.5em 0 0.5em 20px;}
...will line it up correctly, regardless of font-resizing.
regards
Georg
--
http://www.gunlaug.no
******************************************************
The discussion list for http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
******************************************************