06-03-2025 06:37 AM
is the giant logo on the empty start page really neccessary? i'm already using firefox, i know what it is.... there's really no need for that and it's kinda in the way of my saved pages
Solved! Go to Solution.
10-03-2025 11:00 PM - edited 10-03-2025 11:11 PM
Hello
Take a look at https://www.camp-firefox.de/forum/thema/139018-änderungen-der-kachelansicht-bei-startseite-und-neuem...
Is it this subject, if you wish to test userContent.css file
@-moz-document url(about:newtab), url(about:home) {
.logo-and-wordmark-wrapper {
display: none !important;
}
}Similar https://www.userchrome.org/how-create-userchrome-css.html support
10-03-2025 11:00 PM - edited 10-03-2025 11:11 PM
Hello
Take a look at https://www.camp-firefox.de/forum/thema/139018-änderungen-der-kachelansicht-bei-startseite-und-neuem...
Is it this subject, if you wish to test userContent.css file
@-moz-document url(about:newtab), url(about:home) {
.logo-and-wordmark-wrapper {
display: none !important;
}
}Similar https://www.userchrome.org/how-create-userchrome-css.html support
02-12-2025 11:00 AM
@-moz-document url(about:newtab) {
.logo-and-wordmark-wrapper {
display: none !important;
}
}
@-moz-document url(about:home) {
.logo-and-wordmark-wrapper {
display: none !important;
}
}
Derived from (https://connect.mozilla.org/t5/discussions/giant-logo/m-p/89729/highlight/true#M34734)
03-12-2025 12:15 AM
Hello
Other code to try.
@-moz-document url(about:newtab), url(about:home), url(about:privatebrowsing) {
.logo-and-wordmark{display:none!important;}
}