Reputation: 1246
I have managed to get my absolutely positioned menu looking good in all but Firefox 7 for Windows (according to Browserlab).
http://chantalwholesalers.co.nz/wordpress/
The CSS:
#primary-menu {
margin-right: -490px;
position: absolute;
right: 50%;
}
Not quite sure why it is different in just Firefox 7 for Windows? Also seem to have an issue with the footer, not sure if that is related.
Tips? Thanks!
Upvotes: 1
Views: 46
Reputation: 1677
All you need to do is clear you #container div.
#container { clear: both; }
Upvotes: 0