为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

Is it possible to reduce to width of the address bar? And increase the width of the search bar?

  • 2 个回答
  • 1 人有此问题
  • 213 次查看
  • 最后回复者为 mwesson

more options

Hi, I have just changed browsers from IE to Firefox and would like to know if it is possible to reduce to width of the address bar? And increase the width of the search bar?

Hi, I have just changed browsers from IE to Firefox and would like to know if it is possible to reduce to width of the address bar? And increase the width of the search bar?

被采纳的解决方案

Place the mouse cursor between the location bar and the search bar. The cursor should change to a resizer that you can drag left or right to change the width of the location bar and the search bar.

See: http://support.mozilla.com/en-US/kb/Search+bar#Resizing_the_Search_bar

See also Corrupt_localstore.rdf (MozillaZine KB) (caution: do not delete the localstore.rdf file in the Firefox program installation folder)

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 shorter.

You can set a specific width of those bars if you add code to userChrome,css

Add code to userChrome.css below the @namespace line. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */ See http://kb.mozillazine.org/Editing_configuration#How_to_edit_configuration_files

  1. urlbar-container {max-width: 400px !important;}
  2. search-container {max-width: 200px !important;}

(adjust the width to your needs, no space before px)

定位到答案原位置 👍 0

所有回复 (2)

more options

选择的解决方案

Place the mouse cursor between the location bar and the search bar. The cursor should change to a resizer that you can drag left or right to change the width of the location bar and the search bar.

See: http://support.mozilla.com/en-US/kb/Search+bar#Resizing_the_Search_bar

See also Corrupt_localstore.rdf (MozillaZine KB) (caution: do not delete the localstore.rdf file in the Firefox program installation folder)

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 shorter.

You can set a specific width of those bars if you add code to userChrome,css

Add code to userChrome.css below the @namespace line. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */ See http://kb.mozillazine.org/Editing_configuration#How_to_edit_configuration_files

  1. urlbar-container {max-width: 400px !important;}
  2. search-container {max-width: 200px !important;}

(adjust the width to your needs, no space before px)

more options

Yes, I did manage to find out how to do it. But it should be made clear that the location bar and the search bar should be beside each other for this to work, I had two buttons between the two bars and the cursor does not change to a resizer. I moved the two buttons, then resized, then replaced the two buttons to their original position.