Search Support

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

How to remove the star beside the bookmark button

  • 3 odgovori
  • 12 ima ovaj problem
  • 125 views
  • Posljednji odgovor poslao 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?

Izabrano rješenje

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)
Pročitajte ovaj odgovor sa objašnjenjem 👍 2

All Replies (3)

more options

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

more options

Odabrano rješenje

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!