This site will have limited functionality while we undergo maintenance to improve your experience. If an article doesn't solve your issue and you want to ask a question, we have our support community waiting to help you at @FirefoxSupport on Twitter and/r/firefox on Reddit.

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

Hierdie gesprek is in die argief. Vra asseblief 'n nuwe vraag as jy hulp nodig het.

Trouble with bookmark toolbar. Want drop down triangles/arrows for folders but no icons.

  • 3 antwoorde
  • 3 hierdie probleem
  • 54 views
  • Laaste antwoord deur cor-el

more options

I've looked through other peoples questions and googled for about an hour but nothing seems to work for me. I want the drop down triangles/arrows for folders, which I don't have right now (just got ff4). But I don't want the icons for folders or single bookmarks (which I have). So: No icons at all, but drop down arrows.

I'm completely new to this; used to have a theme that was exactly the way I wanted it. Any help or direction pointing is highly appreciated.

I've looked through other peoples questions and googled for about an hour but nothing seems to work for me. I want the drop down triangles/arrows for folders, which I don't have right now (just got ff4). But I don't want the icons for folders or single bookmarks (which I have). So: No icons at all, but drop down arrows. I'm completely new to this; used to have a theme that was exactly the way I wanted it. Any help or direction pointing is highly appreciated.

All Replies (3)

more options

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


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

#personal-bookmarks .bookmark-item[container] .toolbarbutton-icon {
 display:none !important;
}

more options

Hi cor-el, thanks for your answer. Unfortunately, that only helps me about halfway; it removed the folder icons but not the ones for single bookmarks, and I still have no drop down indicators for folders.

Getting the drop down arrows back is probably most important for me.

I tried another line of code from you from another thread, it got rid of the icons, but without the arrows it's just one long line of text that's really hard to read.

more options

If you want to remove the icons on all toolbar items then leave out the [container] part.

#personal-bookmarks .bookmark-item .toolbarbutton-icon {
 display:none !important;
}

#personal-bookmarks .bookmark-item[container] > .toolbarbutton-menu-dropmarker {
 display:-moz-box !important;
}