Posted by XiaN Vizjereij on June 1, 2011 at 7:13pm
1 follower
Jump to:
| Project: | Omega |
| Version: | 6.x-1.x-dev |
| Component: | Code |
| Category: | bug report |
| Priority: | critical |
| Assigned: | Unassigned |
| Status: | active |
Issue Summary
6.x sub-themes of Omega 6.x-1.0 seem to be broken on FireFox 3.6.x.
If you take http://dev.sc2.fm/ as reference point, the whole layout seems to have a "margin-top:20px" on the #page level. The layout works fine on the latest Chrome and IE ( the search is bugged, but thats not related .. i guess :D )
According to FireBug this seems to be caused by the default.css on
.clear-block, .clearfix {
display: block;
}If you change display to "inline-block" .. it kinda works, but still doesn't look as intended.
Comments
#1
Same error on the latest firefox.
I hacked together a workaround, but it kinda doesn't feel right :D
Here is what i'm doing to get my desired result
@-moz-document url(http://www.w3.org/),
url-prefix(http://www.w3.org/Style/),
domain(yourdomain.com) /*Set this to your domain and remove this comment*/
{
/* CSS rules here apply to:
+ The page "http://www.w3.org/".
+ Any page whose URL begins with "http://www.w3.org/Style/"
+ Any page whose URL's host is "mozilla.org" or ends with
".mozilla.org"
*/
#page {
float: left;
left: 50%;
margin-left:-480px; /*set to a negative number 1/2 of your width*/
position:relative;
}
}