Vyhľadajte odpoveď

Vyhnite sa podvodom s podporou. Nikdy vás nebudeme žiadať, aby ste zavolali alebo poslali SMS na telefónne číslo alebo zdieľali osobné informácie. Nahláste prosím podozrivú aktivitu použitím voľby “Nahlásiť zneužitie”.

Learn More

my selected theme is only showing on the first page and goes to a white page on new tabs

  • 2 odpovede
  • 0 má tento problém
  • 4 zobrazenia
  • Posledná odpoveď od cor-el

more options

can you tell me how to show my custom theme i selected to show on all my tabs?

can you tell me how to show my custom theme i selected to show on all my tabs?

Všetky odpovede (2)

more options

If this is about a userContent.css theme, make sure it targets about:newtab in addition to about:home.

@-moz-document url(about:home), url(about:newtab) {
  body {
    --newtab-background-color: red !important;
  }
}
more options

If you use an image, use this in userContent.css in the chrome folder in the Firefox profile folder.

@-moz-document url(about:home), url(about:newtab) {
  body {background: url("wallpaper.jpg") center/cover no-repeat fixed !important;}
}

More info about userChrome.css/userContent.css in case you are not familiar: