To explain what it is about see the first picture "menu_vert_orig.png". It shows the left side menu (styled with CSS "Navigation: Simple - Verticaly") you get after a plain CMSMS installation in IE6/IE7. There's this boring 1px white border.
Looking at the CSS definition one can see that others already fiddled around with this:
Code: Select all
/* first level links */
div#menu_vert a {
text-decoration:none; /* no underline for links */
display: block; /* IE has problems with this, fixed above */
padding: 0.8em 0.5em 0.8em 1.5em; /* some air for it */
color: #18507C; /* this will be link color for all levels */
background: url(images/cms/arrow-right.gif) no-repeat 0.5em center;
min-height:1em; /* Fixes IE7 whitespace bug */
}
Code: Select all
#menu_vert ul li {
display: block;
line-height: 1.1em;
}
Ok, there are people who don't care too much about single pixels - but if you're not that kind of whatsoever-developer then you'll understand why I was very pleased after figuring this out.
Ernst
PS:
Seems to be related to this post:
http://forum.cmsmadesimple.org/index.php/topic,8035.0.html