Prohledat stránky podpory

Vyhněte se podvodům. Za účelem poskytnutí podpory vás nikdy nežádáme, abyste zavolali nebo poslali SMS na nějaké telefonní číslo nebo abyste sdělili své osobní údaje. Jakékoliv podezřelé chování nám prosím nahlaste pomocí odkazu „Nahlásit zneužití“.

Zjistit více

Remove search field from the new tab in Firefox?!

  • 9 odpovědí
  • 1 má tento problém
  • 2 zobrazení
  • Poslední odpověď od Med

more options

Hello,

how to remove/disable the new tab search field?

http://i.imgur.com/yQUlR3L.png

I have try with 'userChrome.css' but not work for me !

@-moz-document url("about:newtab") {

  1. searchSuggestionTable {
 display :none !important;

} }

Hello, how to remove/disable the new tab search field? http://i.imgur.com/yQUlR3L.png I have try with 'userChrome.css' but not work for me ! @-moz-document url("about:newtab") { #searchSuggestionTable { display :none !important; } }
Přiložené obrázky

Upravil uživatel Med dne

Zvolené řešení

This is the currently used profile folder as the name doesn't have a random name? Did you create this folder yourself? Does any other code in either file work?

You can use this button to go to the current Firefox profile folder:

Přečíst dotaz v kontextu 👍 0

Všechny odpovědi (9)

more options

You need to place code for about pages in userContent.css and not in userChrome.css. userChrome.css is for the user interface.

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

cor-el said

You need to place code for about pages in userContent.css and not in userChrome.css. userChrome.css is for the user interface.

Thank you but still not working (see screenshot) !

more options

Zvolené řešení

This is the currently used profile folder as the name doesn't have a random name? Did you create this folder yourself? Does any other code in either file work?

You can use this button to go to the current Firefox profile folder:

more options
Did you create this folder yourself?

- Yes !

Does any other code in either file work?

- No other code on userContent.css

- Code on userChrome.css https://github.com/manjaro/.../chrome/userChrome.css

EDIT: Searching... i have find this bug https://bugzilla.mozilla.org/show_bug.cgi?id=1046166

Upravil uživatel Med dne

more options

That bug refers to a multiprocess feature that is turned off in Firefox 42 by default. Have you turned on e10s in Firefox 42? If you have, the Stylish extension may work with e10s enabled, according to this page: http://arewee10syet.com/

more options

Hi, the easiest way is to use the add-on New Tab Tools.

If your question is resolved by this or another answer, please take a minute to let us know. Thank you.

more options

jscher2000 said

That bug refers to a multiprocess feature that is turned off in Firefox 42 by default. Have you turned on e10s in Firefox 42? If you have, the Stylish extension may work with e10s enabled, according to this page: http://arewee10syet.com/

Thanks for the tip but i dont have Stylish extension ! Later i will reset firefox to the defaut settings and test again.

more options

Did you check the browser.tabs.remote.autostart prefs on the about:config page?

You can open the about:config page via the location/address bar. You can accept the warning and click "I'll be careful" to continue.

more options

@cor-el browser.tabs.remote.autostart is set to false.

@jscher2000 @cor-el i have backup my profile, start/close Firefox to create new one and test again with userContent.css and it is perfectly working !

After that i have reinstall/cofig my addons and restor my bookmark/password from my old profile :)

Solved! Thanks very much to all helping me for fixing this problem.

Regards, Med

Upravil uživatel Med dne