Ky sajt do të funksionojë me kufizime, teksa bëjmë mirëmbajtjen e tij për të përmirësuar punën tuaj. Nëse një artikull nuk e zgjidh problemin tuaj dhe dëshironi të bëni një pyetje, kemi bashkësinë tonë të asistencës, e gatshme për t’ju ndihmuar, te @FirefoxSupport në Twitter dhe/r/firefox në Reddit.

Kërkoni te Asistenca

Shmangni karremëzime gjoja asistence. S’do t’ju kërkojmë kurrë të bëni një thirrje apo të dërgoni tekst te një numër telefoni, apo të na jepni të dhëna personale. Ju lutemi, raportoni veprimtari të dyshimtë duke përdorur mundësinë “Raportoni Abuzim”.

Mësoni Më Tepër

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

  • 3 përgjigje
  • 1 e ka hasur këtë problem
  • 1 parje
  • Përgjigjja më e re nga 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.

Krejt Përgjigjet (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; }