Шукати в статтях підтримки

Остерігайтеся нападів зловмисників. Mozilla ніколи не просить вас зателефонувати, надіслати номер телефону у повідомленні або поділитися з кимось особистими даними. Будь ласка, повідомте про підозрілі дії за допомогою меню “Повідомити про зловживання”

Learn More

Ця тема перенесена в архів. Якщо вам потрібна допомога, запитайте.

Changing the home background using userContent.css

  • 3 відповіді
  • 1 має цю проблему
  • 575 переглядів
  • Остання відповідь від Terry

more options

So I've been checking multiple threads around the internet and wound up here and still stuck userContent.css currently looks like this

@-moz-document url-prefix(about:home), url-prefix(about:newtab), url-prefix(about:blank) {

.click-target-container *,
.top-sites-list * {
  color: #fff !important;
  text-shadow: 2px 2px 2px #000 !important ;
}
body {
 background: url(file:///C:/Users/caras/Downloads/Unknown+Mother+Goose/images/unknown.jpeg)!important;
 background-size: cover !important;
}

}

And I believe it's been placed right at C:\Users\caras\AppData\Roaming\Mozilla\Firefox\Profiles\o4wtp8si.default-release\chrome I've made sure there's no extra .css or .txt on the file, I've set toolkit.legacyUserProfileCustomizations.stylesheets to true and restarted the browser for every change I've made

So I've been checking multiple threads around the internet and wound up here and still stuck userContent.css currently looks like this @-moz-document url-prefix(about:home), url-prefix(about:newtab), url-prefix(about:blank) { .click-target-container *, .top-sites-list * { color: #fff !important; text-shadow: 2px 2px 2px #000 !important ; } body { background: url(file:///C:/Users/caras/Downloads/Unknown+Mother+Goose/images/unknown.jpeg)!important; background-size: cover !important; } } And I believe it's been placed right at C:\Users\caras\AppData\Roaming\Mozilla\Firefox\Profiles\o4wtp8si.default-release\chrome I've made sure there's no extra .css or .txt on the file, I've set toolkit.legacyUserProfileCustomizations.stylesheets to true and restarted the browser for every change I've made

Обране рішення

If the image file is in the chrome folder, the following should suffice: url("unknown.jpeg")

Читати цю відповідь у контексті 👍 0

Усі відповіді (3)

more options

Is any part of your code working? I would place the image file (or a copy) in the chrome folder with your stylesheet and change the url accordingly.

more options

Note that the best way to get the correct URL if you do not place the file in the chrome folder is to open the file in a Firefox tab and check the link in the location bar.

more options

Вибране рішення

If the image file is in the chrome folder, the following should suffice: url("unknown.jpeg")