Page 1 of 1

userstyles and macrumors

Posted: Sun Jul 19, 2009 3:57 pm
by Erunno
I'll abuse my fellow EasyList readers as some kind of help desk. Hope you don't mind. Anyway, so I finally decided to try getting rid of the ugly white space on http://www.macrumors.com/. After playing with Firebug for some time in order to find the responsible CSS declarations the following user style emerged:

Code: Select all

@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document domain("macrumors.com") {

}

#mr_banner {
height: 100px;
}

#menu {
top: 110px;
}

#comments {
top: 110px;
}
Changing these values in Firebug directly leads to the desired disappearance of the white space but for some unknown reason using the above style has no effect at all. Does anyone have an idea why this is the case?

Image

EDIT: Added cat for emphasis.

Re: userstyles and macrumors

Posted: Sun Jul 19, 2009 9:31 pm
by Erunno
After remembering this topic I figured the rest out myself. I'm proud to present the final result ;-) :

Code: Select all

@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document domain("macrumors.com") {
#mr_banner { height: 100px !important; }

#menu { top: 110px !important; }

#comments { top: 110px !important;}
}

Re: userstyles and macrumors

Posted: Tue Jul 21, 2009 8:29 pm
by Oxwil
Congratulations! :banana:

Re: userstyles and macrumors

Posted: Wed Jul 22, 2009 7:45 am
by Erunno
Oxwil wrote:Congratulations! :banana:
Thanks. Every small victory counts! :biggrin: