cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

giant logo

db12
Making moves

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

1 ACCEPTED SOLUTION

Agentvirtuel
Collaborator

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

View solution in original post

3 REPLIES 3

Agentvirtuel
Collaborator

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

updateshurtme
Making moves

@-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)

Agentvirtuel
Collaborator

Hello

Other code to try.

@-moz-document url(about:newtab), url(about:home), url(about:privatebrowsing) {
.logo-and-wordmark{display:none!important;}
}