본 사이트는 여러분의 사용자 경험을 개선하기 위해 유지 보수를 진행하는 동안 기능이 제한됩니다. 도움말로 문제가 해결되지 않고 질문을 하고 싶다면 Twitter의 @FirefoxSupport 및 Reddit의 /r/firefox 채널을 활용하세요.

Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

address bar will not unfurl all address'. First twenty are shown, rest are hidden beneath and can only be accessed by the down arrow on the keyboard.

more options

when I received the latest Firefox update a few days ago this problem started: In my address bar I can only view the first 21 urls. If I want to view the rest of my saved urls, I need to use the arrow button off the keyboard, going past the first 21 urls, then tapping arrow tab for each individual url, that then shows up in the address bar. I have searched help sites for answers to no avail. I have looked in about:config, but don't know specifically where/what to adjust.

In about:config the browser.urlbar.maxRichResults line is set to 200 Thanks for any info Wyatt

when I received the latest Firefox update a few days ago this problem started: In my address bar I can only view the first 21 urls. If I want to view the rest of my saved urls, I need to use the arrow button off the keyboard, going past the first 21 urls, then tapping arrow tab for each individual url, that then shows up in the address bar. I have searched help sites for answers to no avail. I have looked in about:config, but don't know specifically where/what to adjust. In about:config the browser.urlbar.maxRichResults line is set to 200 Thanks for any info Wyatt

모든 댓글 (4)

more options

You can add a scroll bar.

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

#PopupAutoCompleteRichResult > richlistbox > scrollbox {
 overflow: auto !important;
}

You can use the button on the "Help -> Troubleshooting Information" (about:support) page to go to the current Firefox profile folder or use the about:profiles page.

  • create the chrome folder (lowercase) in the <xxxxxxxx>.default profile folder if this folder doesn't exist
  • use a plain text editor to create a (new) userChrome.css file in the chrome folder (file name is case sensitive)
  • paste the code in the userChrome.css file in the editor window
  • make sure that the userChrome.css file starts with the default @namespace line
  • make sure that you select "All files" and not "Text files" when you save the file via "Save file as" in the text editor as userChrome.css.
more options

Thanks for the info. Still no scroll bar though. I followed the above. installed a chrome folder into which a put the userchrome.css file, which was placed the code: @namespace line http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul

  1. PopupAutoCompleteRichResult > richlistbox > scrollbox {
overflow: auto !important;

File was saved as instructed.

more options

You can try to set a max-height (units in em or px):

#PopupAutoCompleteRichResult > richlistbox { max-height: 30em !important; }
more options

For Firefox 57, you also can snug the scrollbar up to the right side for a nicer appearance by moving the padding from the outer element to the inner one:

/* Ability to scroll in Fx57 */ 
#PopupAutoCompleteRichResult .autocomplete-richlistbox { 
  max-height: 600px !important; /* Edit value as desired */
  padding-right: 0 !important; 
} 
#PopupAutoCompleteRichResult .autocomplete-richlistbox > scrollbox { 
  overflow-y: auto !important;  
  padding-right: 3px !important; 
} 

Probably not necessary in Firefox 56, though.