Okay the fluid style you wanted for the home page is difficult but should work. It was originally done in fixed width because getting the items to center in IE6 required fixed widths. However, this is now calculated using Javascript so it seems switching to fluid width is okay, and it should also look fine on other fixed widths without having to change the VW CSS.
That said, it will of course still look ugly if the browser is not wide enough to show the namespaces side-by-side, and how low it will scale gracefully is dependent on the length of the box contents. There's not much we can do about this, but I've tested it down to 600px with the titles we have here.
These are essentially the changes:
Code:
ul.namespace_list {
width: auto;
}
.namespace_list li {
width: 49%;
margin: 0;
}
.namespace_list h2.vw-head {
margin: 6px 40px;
}
As for the underline, this is a strange quirk of vBulletin's Javascript, but apparently it underlines less when the id attribute is moved to the table cell (rather than on what you want it to underline). If you want to modify your blogs drop-down now, that's what you have to do.
Bookmarks