cleanUp(“*google.com”);
Posted in code by g @ September 29th, 2008 :: :: No Comments »Its always frustrated me that on every site that is related to a Google service, there is a small blue bar at the top of the screen. This light blue bar seemingly is used to disambiguate the header links on the page from the page’s content. However, to me its an eyesore and would look much better if removed. I was able to accomplish this by editing the userContent.css file in Firefox with the below CSS:
@-moz-document domain(google.com) {
.gbh, .gbd, .UiIfsf, .qp {
border: none ! important;
font-size:1px;
}
}
I will leave it up to you to locate this file, but I can tell you that for me it was located in one of two places:
(windows firefox portable) ./data/profile/chrome
(linux) ~/mozilla/firefox/xxxxxxx.default/chrome {here the xxxx is a random string}
G
