Web @ 16 September 2005, “No Comments”
Finaly found bug in my ul, li menu positioning. The problem was, that IE, FireFox, And Opera was displaying ul li menu at different positions (see pictures):
So I rechecked my css. Finaly made some reading, and changed wrong margins:
was:
ul {
margin: 0 0 0 -20px;
}
margin: 0 0 0 -20px;
}
changed to:
li {
list-style-type: none;
margin: 0 0 0 -20px;
}
list-style-type: none;
margin: 0 0 0 -20px;
}
Problem was, that margins needs to be changed in li not ul section.



