I also found that the checkboxes on the Extension Management page were positioned incorrectly (at least on my browser Mac/FF)
Removing the absolute positioning seemed to work well: div.Extensions ul li input { width: auto !important; margin-top: 3px !important; left: 260px; position: absolute; }
If you simply remove the following from styles/green/vanilla.css, it should work fine across browsers: #Header {
position: relative;
background-color: #000;
} It's not required at all.
When I do a search for users or comments, the results are listed but the titles to each section are mis-matched from the comments. Is there a way to fix this? A search for topics looks fine.
Comments
Adding the following to #pgbottom selector in vanilla.css fixed the problem:
clear:both; display:block
Removing the absolute positioning seemed to work well:
div.Extensions ul li input {
width: auto !important;
margin-top: 3px !important;
left: 260px;
position: absolute;
}
It may require an IE 7 specific hack.
#Header { position: relative; background-color: #000; }
It's not required at all.