搜索 | 用户支持

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

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.