dunno where to send this, msg 4 (CMSMS) developers
Posted: Thu Jul 13, 2006 9:25 am
I was messing around with the CSS and saw that you use
#primary-nav li {
margin-left: -1px;
float: left;
}
instead you better use
#primary-nav li {
display : inline;
float: left;
}
wanna know why? : http://www.positioniseverything.net/exp ... argin.html
Also interesting: The (img) three pixel gap ... http://www.positioniseverything.net/exp ... xtest.html
#primary-nav li {
margin-left: -1px;
float: left;
}
instead you better use
#primary-nav li {
display : inline;
float: left;
}
wanna know why? : http://www.positioniseverything.net/exp ... argin.html
Also interesting: The (img) three pixel gap ... http://www.positioniseverything.net/exp ... xtest.html