how can I access a drop down function in the search bar?
I just updated to the newest Firefox. I'm sad that the google toolbar is no longer supported. But I'll soldier on... <big sigh>.
Seriously though: The function I miss from google toolbar is the drop down menu in the search bar, allowing me to 'drop down' and reselect a previous search phrase... what can I say, I'm scatter brained and easily distracted, so I often return to a concept multiple times a week.
How can I emulate the same function in FF 17?
K
Modified
All Replies (2)
Hello dochockin, see: How to use popular search suggestions in the Search Bar
see also for more information about search bar :
Clear recent searches from the Search bar
Search bar - Easily choose your favorite search engine
thank you
Add code to the userChrome.css file below the default @namespace line.
The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
/* Searchbar History */
#searchbar .autocomplete-history-dropmarker {
-moz-binding: url("chrome://global/content/bindings/autocomplete.xml#history-dropmarker");
display:-moz-box !important;
-moz-appearance: toolbarbutton-dropdown !important;
}