Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

搜索 | 用户支持

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

Learn More

How to get rid of bookmark star?

  • 3 个回答
  • 5 人有此问题
  • 1 次查看
  • 最后回复者为 potato123

more options

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; }

定位到答案原位置 👍 0

所有回复 (3)

more options

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

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

thank you

由ideato于修改

more options

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
more options

选择的解决方案

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; }