about:newtab search suggestions popup

Everything about using Adblock Plus on Mozilla Firefox, Thunderbird and SeaMonkey
Post Reply
Kinne
Posts: 21
Joined: Sat Mar 28, 2015 11:12 pm

about:newtab search suggestions popup

Post by Kinne »

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.

Image
User avatar
smed79
Posts: 1224
Joined: Thu Jan 14, 2010 11:51 pm
Location: EasyList Forum
Contact:

Re: about:newtab search suggestions popup

Post by smed79 »

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/
Kinne
Posts: 21
Joined: Sat Mar 28, 2015 11:12 pm

Re: about:newtab search suggestions popup

Post by Kinne »

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
User avatar
smed79
Posts: 1224
Joined: Thu Jan 14, 2010 11:51 pm
Location: EasyList Forum
Contact:

Re: about:newtab search suggestions popup

Post by smed79 »

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:

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}
}
result:
Image

to hide setting button:

Code: Select all

@-moz-document url(about:newtab){
 #newtab-customize-button {display:none!important}
}
Post Reply