Windows 10 reached EOS (end of support) on October 14, 2025. For more information, see this article.

Pretraži podršku

Izbjegni prevare podrške. Nikad te nećemo tražiti da nas nazoveš, da nam pošalješ telefonski broj ili da podijeliš osobne podatke. Prijavi sumnjive radnje pomoću opcije „Prijavi zlouporabu”.

Saznaj više

Feature request: setting for color of new tab

  • 5 odgovora
  • 2 imaju ovaj problem
  • 19 prikaza
  • Posljednji odgovor od cor-el

više opcija

So the user can customize it with a value (hex). The current about:config command is too general, as that one will also change the color of websites that allow customized background colors. (meaning that sadly the current about:config command will change both new tab AND the background color of specific websites.)

So the user can customize it with a value (hex). The current about:config command is too general, as that one will also change the color of websites that allow customized background colors. (meaning that sadly the current about:config command will change both new tab AND the background color of specific websites.)

Svi odgovori (5)

više opcija

Not sure what it is you are looking for. There are many add-ons that change colors for tabs, websites, and other things.

više opcija

I mean when I press "ctrl+T", the page is white. I wanna change that color. Haven't found an addon that changes only that, without affecting websites aswell.

više opcija

"ctrl+T" opens the about:newtab page, which the user can set.

With Firefox 41 (and higher), it's no longer possible to customize the page shown in a new tab via changing the preference browser.newtab.url in about.config. Because of the fact that hijackers abused the preference in the past, Mozilla decided to remove it (see bug 1118285). Fortunately, by removing it, Mozilla also introduced a new API to bring this functionality back to life as an add-on. This add-on allows the user to choose a certain page in a new tab.

New Tab Override (browser.newtab.url replacement) https://addons.mozilla.org/en-US/firefox/addon/new-tab-override/

This is also available using Classic Theme Restorer (Customize Australis) {web link} Restore squared tabs, appmenu, add-ons bar, small button view and more on Australis UI (Windows/MacOSX/Linux + Fx 29+).

više opcija

Very nice addon! :D (the "New Tab Override") But it seems I cannot just choose a color, I have to make my own website with a blue picture/load the picture from my HDD everytime... :P But ok! :)

Izmjenjeno od Dan

više opcija

Note that you can modify CSS rules for about:newtab via code in userContent.css.

Add code to the userContent.css file.


@-moz-document url(about:newtab){
 #newtab-margin-top,
 #newtab-margin-bottom,
 #newtab-search-container { display:none!important; }
}

The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.