
Originally Posted by
boriZ
The issue is this:
Code:
li { background:url(../images/list_back.gif) repeat-x bottom; padding-left:12px; line-height:22px; color:#BDBDBD; }
inside style.css, which says that EVERY list item, anywhere on the site, needs to have the little white dot, and 12px of left padding. The 12px of left padding is what is making the menu wrap.
So, I would change the above to:
Code:
.columnLeft li { background:url(../images/list_back.gif) repeat-x bottom; padding-left:12px; line-height:22px; color:#BDBDBD; }
so that this only occurs for things in the sideboxes, and not the whole site.