搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

How to remove the star beside the bookmark button

  • 3 回覆
  • 12 有這個問題
  • 125 次檢視
  • 最近回覆由 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!