Ce site disposera de fonctionnalités limitées pendant que nous effectuons des opérations de maintenance en vue de vous proposer un meilleur service. Si un article ne règle pas votre problème et que vous souhaitez poser une question, notre communauté d’assistance est prête à vous répondre via @FirefoxSupport sur Twitter, et /r/firefox sur Reddit.

Rechercher dans l’assistance

Évitez les escroqueries à l’assistance. Nous ne vous demanderons jamais d’appeler ou d’envoyer un SMS à un numéro de téléphone ou de partager des informations personnelles. Veuillez signaler toute activité suspecte en utilisant l’option « Signaler un abus ».

En savoir plus

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

  • 3 réponses
  • 1 a ce problème
  • 1 vue
  • Dernière réponse par 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.

Toutes les réponses (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; }