Forum Moderators: not2easy

Message Too Old, No Replies

list menu position in FF vs IE

         

new_one

3:09 pm on Sep 27, 2007 (gmt 0)

10+ Year Member



Hi all,

I make horizontal navigation for the header, but I got the navigation quiet shift to the right in FF than in IE7.

Here is the code :

.navi{
display:inline;
position:absolute;
margin:70px 0 0 320px;
}
.navi li{
font: 14px verdana;
color:white;
display:inline;
margin-left:5px;
}
a{}
a:link{color:white; text-decoration:none}
a:visited{color:white; text-decoration:none}
a:hover{color:white; text-decoration:underline}
a:active{color:white; text-decoration:none}

many thanks

Marshall

3:37 am on Sep 29, 2007 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



You may need to add

.navi ul {
margin: 0;
padding: 0;
}

Marshall

new_one

1:53 am on Oct 1, 2007 (gmt 0)

10+ Year Member



thx Marshall, but it doesn't work

Marshall

2:08 am on Oct 1, 2007 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



Can you post the relevant HTML and doctype so I can test it?

Marshall