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
dunno where to send this, msg 4 (CMSMS) developers
Re: dunno where to send this, msg 4 (CMSMS) developers
Actually I think I already fixed that for svn version 
thanks

thanks