搜索 | 用户支持

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

Learn More

How to remove the star beside the bookmark button

  • 3 个回答
  • 12 人有此问题
  • 150 次查看
  • 最后回复者为 frozened

more options

After the Firefox update 29 and later, there's a "star" button beside the "bookmark" button. It's annoying when I try to open up my bookmarks, accidentally click on the "star" and bookmark the current page. Customize doesn't work since those 2 buttons are attached to each other and cannot just remove the "star"

Is there a way to remove the "star" beside the "show your bookmarks" button?

After the Firefox update 29 and later, there's a "star" button beside the "bookmark" button. It's annoying when I try to open up my bookmarks, accidentally click on the "star" and bookmark the current page. Customize doesn't work since those 2 buttons are attached to each other and cannot just remove the "star" Is there a way to remove the "star" beside the "show your bookmarks" button?

被采纳的解决方案

The Bookmarks Menu button is actually the drop marker of the combined star (Bookmark This Page) and Show all Bookmarks button.

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 */

#bookmarks-menu-button toolbarbutton { visibility:collapse !important; }

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

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

  • Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
定位到答案原位置 👍 2

所有回复 (3)

more options

Does this code in a userChrome.css file in a chrome subdirectory in the profile work to remove it?

more options

选择的解决方案

The Bookmarks Menu button is actually the drop marker of the combined star (Bookmark This Page) and Show all Bookmarks button.

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 */

#bookmarks-menu-button toolbarbutton { visibility:collapse !important; }

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

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

  • Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
more options

Thank you so much!