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 get rid of bookmark star?

  • 3 பதிலளிப்புகள்
  • 5 இந்த பிரச்னைகள் உள்ளது
  • 1 view
  • Last reply by potato123

How to get rid of bookmark star? I tried:

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); #bookmarks-menu-button toolbarbutton { visibility:collapse !important; }

by creating and putting it in a file "userChrome.css" in "chrome" folder in my profile, but it didn't work.

Is there another way?

How to get rid of bookmark star? I tried: @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); #bookmarks-menu-button toolbarbutton { visibility:collapse !important; } by creating and putting it in a file "userChrome.css" in "chrome" folder in my profile, but it didn't work. Is there another way?

potato123 மூலமாக திருத்தப்பட்டது

தீர்வு தேர்ந்தெடுக்கப்பட்டது

Nevermind, it turns out I was saving my files as userChrome.css.txt.


The code below does work:

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); #bookmarks-menu-button toolbarbutton { visibility:collapse !important; }

Read this answer in context 👍 0

All Replies (3)

Hi, check the next (always in userChrome.css)

   #star-button { display: none !important; }

thank you

ideato மூலமாக திருத்தப்பட்டது

The current version of the bookmarks star on the Navigation Toolbar consists of two buttons, one if the actual star button and the other is the drop marker that opens the drop-down list.

These are the selectors for both:

#nav-bar-customization-target #bookmarks-menu-button .toolbarbutton-menubutton-button
#nav-bar-customization-target #bookmarks-menu-button .toolbarbutton-menubutton-dropmarker

தீர்வு தேர்ந்தெடுக்கப்பட்டது

Nevermind, it turns out I was saving my files as userChrome.css.txt.


The code below does work:

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); #bookmarks-menu-button toolbarbutton { visibility:collapse !important; }