搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

How do I shorten the address bar (where www.ebay.com is at)...it now goes the entire width of the screen covering up my wallpaper?

  • 1 回覆
  • 39 有這個問題
  • 1 次檢視
  • 最近回覆由 cor-el

more options

I like the new "wallpaper" just downloaded from Firefox that's at the top 3 inches of the screen. However, the address bar goes virtually across the entire screen, covering up her face. Clicking on the "View" button over the address bar, then Toolbars, then Customize, I've been able to move stuff around that was covering the area of her face. How can I shorten the address bar 3, 4 inches so I can enjoy all of the image? Thank you. Bruce

I like the new "wallpaper" just downloaded from Firefox that's at the top 3 inches of the screen. However, the address bar goes virtually across the entire screen, covering up her face. Clicking on the "View" button over the address bar, then Toolbars, then Customize, I've been able to move stuff around that was covering the area of her face. How can I shorten the address bar 3, 4 inches so I can enjoy all of the image? Thank you. Bruce

所有回覆 (1)

more options

The location bar and search bar have a flex property and take all available space.
You can change the relative size of both with that resizer between the two bars, but that won't change the space that both take.
You can add Space elements at the right of the bar in the "View > Toolbars > Customize" window to make the location bar and search bar container shorter.

You can also set a specific max-width for the two bars by adding code to userChrome.css below the @namespace line.

See http://kb.mozillazine.org/Editing_configuration#How_to_edit_configuration_files

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#urlbar-container {max-width: 400px !important}
#search-container {max-width: 200px !important}