Søg i 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 do I remove little black arrows next to some addon buttons?

  • 2 svar
  • 3 har dette problem
  • 15 visninger
  • Seneste svar af FredMcD

more options

These tiny arrows greatly annoy me when I add these elements to the sidebar. Is there a way to remove them? http://puu.sh/38xCQ.jpg

These tiny arrows greatly annoy me when I add these elements to the sidebar. Is there a way to remove them? http://puu.sh/38xCQ.jpg

Valgt løsning

Does clicking the arrow have the effect as clicking the icon part because sometimes the serve a different purpose?

It should be possible to remove the drop marker arrows (they usually have a -dropmarker suffix) with code in userChrome.css, but you would need to know the ID of each toolbar button or else they will all be removed and you may want to keep some (e.g. there are two Bookmarks buttons in the toolbar palette).


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#nav-bar .toolbarbutton-menu-dropmarker[label="<label name>"] { display: none!important; }

Add code to the userChrome.css file below the default @namespace line.

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

Læs dette svar i sammenhæng 👍 1

Alle svar (2)

more options

Valgt løsning

Does clicking the arrow have the effect as clicking the icon part because sometimes the serve a different purpose?

It should be possible to remove the drop marker arrows (they usually have a -dropmarker suffix) with code in userChrome.css, but you would need to know the ID of each toolbar button or else they will all be removed and you may want to keep some (e.g. there are two Bookmarks buttons in the toolbar palette).


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#nav-bar .toolbarbutton-menu-dropmarker[label="<label name>"] { display: none!important; }

Add code to the userChrome.css file below the default @namespace line.

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

more options

Those arrows are the options for the icon next to them. Press the icon;s arrow, and the options list drops down for you.