This style removes logo only on the printer friendly page.
Jul 18 2007 : Initial Release
Jan 30 2008 : Updated for Google Apps Gmail. Thanks war59312.
src^="/mail/help/images/logo" ---> src*="/images/logo"
Sep 14 2008 : Remove email address (top right) too. Thanks Dave Holland and bugmenot2.
note:
/* --- logo --- */
body > table:first-child img[src*="/images/logo"]
/* --- email address (top right) --- */
body > table:first-child b
/* --- both --- */
body > table:first-child
Jan 3 2009 : Updated for important feedback. Thanks gnfoster.
Before
|
After
|
Hi gnfoster!
"body > table:first-child img[src*="/images/logo"] does not works anymore and the "Use the code as is" does not work too.
With this "body > table:first-child" I loose the info in other pop-ups such as Settings/Accounts/Add another mail account
Changing it to list two actions "body > table:first-child img[src*="/images/logo"]" AND "body > table:first-child b" removes them both and still leaves the other pop-ups (as above) working.
It reads an error as you save it, but click "Use the code as is" and it works fine.
So:
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("mail.google.com") {
body > table:first-child img[src*="/images/logo"]
{
display: none !important;
}
}body > table:first-child b
{
display: none !important;
}
}
This style works great. BTW I have the same request as Dave, Id like the email address (top right) to be removed.
Hi
The idea as it is is displayed is brilliant and exactly what I need. But I just cannot get the script to work - it simply has no effect. I am using Better GMail2 and Greasemonkey.Am I missing anything "simple" please? Any info would be greatly appreciated
Well, it's funny: Now I'm using BetterGMail2 with 'Redesigned' skin it works although sometimes it fails and I need to reload Firefox/GMail. One BIG question: Is there any possibility to remove the GMail address that prints above the line (on the right where the logo would have been)? This would be terrific - I use GMail for sending/receiving from other addresses and if I make a print it defeats the objective. Many thanks!
Nice, if only it worked on hosted domains as well. :(
Update: Thanks a lot!!
Good style.