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

Would like to remove search bar to see lovely snowmen add-on

  • 2 回覆
  • 2 有這個問題
  • 8 次檢視
  • 最近回覆由 FredMcD

more options

I can click between the URL and search bars to shorten them to the left, but the right hand side of the search bar stays where it was. I would like to condense both bars to the left so that I can see the lovely snowmen of my add-on. Or remove the search bar totally. Thanks, Nick

I can click between the URL and search bars to shorten them to the left, but the right hand side of the search bar stays where it was. I would like to condense both bars to the left so that I can see the lovely snowmen of my add-on. Or remove the search bar totally. Thanks, Nick

被選擇的解決方法

You can move the search bar to the "3-bar" Firefox menu button drop-down list and it will still function properly and respond to the Ctrl+K keyboard shortcut.

  • Right-click the Search logo -> Move to Menu

You can also consider to add some opacity to the location bar and the search 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 */

#navigator-toolbox {min-height:200px!important}

#urlbar {opacity:0.5!important}
#urlbar:hover {opacity:0.8!important}
#urlbar[focused="true"] {opacity:1!important}

#searchbar .searchbar-textbox {opacity:0.5!important}
#searchbar .searchbar-textbox:hover {opacity:0.8!important}
#searchbar .searchbar-textbox[focused="true"] {opacity:1!important}

The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.

  • Create the chrome folder (lowercase) in the <xxxxxxxx>.default profile folder if this folder doesn't exist
  • Use a plain text editor like Notepad 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.
    Otherwise Windows may add a hidden .txt file extension and you end up with a not working userChrome.css.txt file

You can use this button to go to the currently used Firefox profile folder:

從原來的回覆中察看解決方案 👍 0

所有回覆 (2)

more options

選擇的解決方法

You can move the search bar to the "3-bar" Firefox menu button drop-down list and it will still function properly and respond to the Ctrl+K keyboard shortcut.

  • Right-click the Search logo -> Move to Menu

You can also consider to add some opacity to the location bar and the search 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 */

#navigator-toolbox {min-height:200px!important}

#urlbar {opacity:0.5!important}
#urlbar:hover {opacity:0.8!important}
#urlbar[focused="true"] {opacity:1!important}

#searchbar .searchbar-textbox {opacity:0.5!important}
#searchbar .searchbar-textbox:hover {opacity:0.8!important}
#searchbar .searchbar-textbox[focused="true"] {opacity:1!important}

The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.

  • Create the chrome folder (lowercase) in the <xxxxxxxx>.default profile folder if this folder doesn't exist
  • Use a plain text editor like Notepad 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.
    Otherwise Windows may add a hidden .txt file extension and you end up with a not working userChrome.css.txt file

You can use this button to go to the currently used Firefox profile folder:

由 cor-el 於 修改

more options

What we really need is a way to display the themes properly.