Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Learn More

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

  • 2 trả lời
  • 0 gặp vấn đề này
  • 4 lượt xem
  • Trả lời mới nhất được viết bởi 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?

Tất cả các câu trả lời (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: