ابحث في الدعم

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

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

  • 2 (ردّان اثنان)
  • 1 has this problem
  • 666 views
  • آخر ردّ كتبه 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)

Read this answer in context 👍 0

All Replies (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.