Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Learn More

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

  • 2 ответа
  • 0 имеют эту проблему
  • 4 просмотра
  • Последний ответ от 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?

Все ответы (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: