Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

how do I remove search from address bar?

  • 1 reply
  • 2 have this problem
  • 18 views
  • Last reply by cor-el

more options

My firefox just updated and is now forcing me to have a default search engine connected to my address bar. I never used the address bar to search and don't want to start now. I've tried all the settings and it doesn't give me an option to remove this new feature. It gives the option to change which default search engine is connected to the address bar, but it doesn't give NONE as an option, or let me set it up so that the default search engine is only used for the search bar and not the address bar. I also can't restore my previous version. Is there any way to resolve this issue?

My firefox just updated and is now forcing me to have a default search engine connected to my address bar. I never used the address bar to search and don't want to start now. I've tried all the settings and it doesn't give me an option to remove this new feature. It gives the option to change which default search engine is connected to the address bar, but it doesn't give NONE as an option, or let me set it up so that the default search engine is only used for the search bar and not the address bar. I also can't restore my previous version. Is there any way to resolve this issue?

Modified by concerneduser2

All Replies (1)

more options

You can set keyword.enabled to false on the about:config page to disable searching via the address bar.

You can open the about:config page via the location/address bar. You can accept the warning and click "I accept the risk!" to continue.


You can remove the search engine bar in the address bar drop down list by setting this pref to false on the about:config page.

  • browser.urlbar.oneOffSearches = false

You can use code in userChrome.css remove all suggestions from the address bar drop down list.

Add code to the userChrome.css file below the default @namespace line.


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

/* remove all items from the urlbar drop down */
#PopupAutoCompleteRichResult {display:none !important;}