Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

搜尋 Mozilla 技術支援網站

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

Learn More

How do I shorten the address bar?

  • 3 回覆
  • 11 有這個問題
  • 2 次檢視
  • 最近回覆由 cor-el

more options

The address bar in my Firefox covers so much of the space I cannot see some of the icons either side, reload, home, stop ,etc, so how do I resize the address bar?

The address bar in my Firefox covers so much of the space I cannot see some of the icons either side, reload, home, stop ,etc, so how do I resize the address bar?

所有回覆 (3)

more options
more options

Sorry, but this doesn't work. I found out the only way I can seem to do it is in VIEW>TOOLBARS>CUSTOMISE, then add spaces and this reduces the space for the address bar, you can than put in icons you need. Hope this helps someone else, as the help here is about icons and tool bars, not about the address bar.

more options

The location bar (flex:400) and the search bar (flex:100) have a flex property and take up all available space.

You can place the mouse pointer between the location bar and the search bar and it will become a resize icon that you can drag right or left with the left mouse button pressed to change the relative width of the two bars.

You can set the max-width of the location bar and the search bar to force a maximum width of both bars.

@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; }

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.