
about:newtab search suggestions popup
about:newtab search suggestions popup
There are no settings to get rid of this, classic theme restorer doesn't have a setting for it, and adding ##table#searchSuggestionTable.contentSearchSuggestionTable as a filter doesn't work. Would appreciate a way to get rid of this disgusting eyesore.


Re: about:newtab search suggestions popup
Hi,
Mozilla removes option to change New Tab Page and Firefox 41 no longer uses the browser.newtab.url setting in about:config because it was constantly attacked by malware.
Starting in Firefox 41, you need an add-on to change the new tab page.
https://addons.mozilla.org/en-US/firefo ... -override/
This is how to disable creating thumbnails on new tab page https://support.mozilla.org/en-US/quest ... wer-486349
> http://www.ghacks.net/2015/06/28/mozill ... m-firefox/
Mozilla removes option to change New Tab Page and Firefox 41 no longer uses the browser.newtab.url setting in about:config because it was constantly attacked by malware.
Starting in Firefox 41, you need an add-on to change the new tab page.
https://addons.mozilla.org/en-US/firefo ... -override/
This is how to disable creating thumbnails on new tab page https://support.mozilla.org/en-US/quest ... wer-486349
> http://www.ghacks.net/2015/06/28/mozill ... m-firefox/
Re: about:newtab search suggestions popup
Okay...An answer to my actual question would be nice. I don't want to get rid of the page, I want to get rid of the search suggestion popup box
Re: about:newtab search suggestions popup
Hi,
@Kinne If you want to get rid of the search suggestion popup box:
1. disable search suggestions https://support.mozilla.org/en-US/kb/us ... gestions_2
2. on your Firefox profile folder creat new folder named chrome, on this folder creat new file named userChrome.css.
Edit/copy/past/save:
----------
to hide search field:
result:

to hide setting button:
@Kinne If you want to get rid of the search suggestion popup box:
1. disable search suggestions https://support.mozilla.org/en-US/kb/us ... gestions_2
2. on your Firefox profile folder creat new folder named chrome, on this folder creat new file named userChrome.css.
Edit/copy/past/save:
Code: Select all
@-moz-document url(about:home){
.contentSearchSuggestionTable,
.contentSearchSuggestionsList {display:none!important}
}
to hide search field:
Code: Select all
@-moz-document url(about:newtab){
#newtab-margin-top,
#newtab-margin-bottom,
#newtab-search-container {display:none!important}
}

to hide setting button:
Code: Select all
@-moz-document url(about:newtab){
#newtab-customize-button {display:none!important}
}