Hi guys,
I made a horizontal list but it seems it is not being parsed correctly in IE7. Safari and Firefox both work fine.
This is the CSS and only codes related to the list are shown:
This is how the list shown in Safari and Firefox (I added #left and #right to let you know what are they).
This is how IE7 behaved strangely (I didn't include #left).
Are there anything wrong in the code? Thank you very much.
I made a horizontal list but it seems it is not being parsed correctly in IE7. Safari and Firefox both work fine.
This is the CSS and only codes related to the list are shown:
Code:
ul {
list-style-image: none;
list-style-type: none;
}
#navigation #right ul {
margin: 0 0;
padding: 0 0;
}
#navgiation #right li {
list-style-type: none;
display: inline;
}
#navigation #right li a {
float: left;
height: 43px;
font-size: 18px;
overflow: hidden;
width: 125px;
color: #000;
text-align: center;
padding-top: 27px;
position: relative;
}
This is how the list shown in Safari and Firefox (I added #left and #right to let you know what are they).
This is how IE7 behaved strangely (I didn't include #left).
Are there anything wrong in the code? Thank you very much.