Join us and the lead editor of IRL, Mozilla's multi-award-winning podcast, for a behind-the-scenes look at the pod and to contribute your ideas for the next season, themed: "AI and ME." Mark your calendar and join our Community Call on Wednesday, Aug 7, 17:00–17:45 UTC. See you there!

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

I want to add a scroll option to the Firefox awesome bar's drop down menu.

  • 3 cavab
  • 1 has this problem
  • 1 view
  • Last reply by cor-el

more options

Exactly what it says in the above question, I don't want to know how to add vertical or horizontal scroll bars to websites, all I want is the option to scroll down a list of addresses shown by the awesome bar.

Exactly what it says in the above question, I don't want to know how to add vertical or horizontal scroll bars to websites, all I want is the option to scroll down a list of addresses shown by the awesome bar.

All Replies (3)

more options

If you want more results to appear in that drop don list then you can increase the value of the browser.urlbar.maxRichResults pref on the about:config page.

You need to close and restart Firefox to make changes effective.

more options

Results are not the issue, the issue is that I want a bar on the right side of the results list that allows me give it a compact look and still hold more than 6 results without it going all the way down the screen.

more options

You can try to do this with code in the userChrome.css file.
Adjust the max-height to get the preferred behavior.


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 */

#PopupAutoCompleteRichResult { max-height: 100px !important; }