CSS ul positioning problem |
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;
}
changed to:
li {
list-style-type:none;
margin: 0 0 0 -20px;
}
Problem was, that margins needs to be changed in li not ul section.
Comments:
Date: 10/16/2006 at 17:27:59
Poster: Vaidas
No problem, sometimes simple things looks much complex than they are ;)
Date: 10/10/2006 at 22:53:54
Poster: Crissie
Thanks! This was a great help!Seems so silly to not think of it on my own! :)




