Funkcionalnosć tutoho sydła so přez wothladowanske dźěła wobmjezuje, kotrež maja waše dožiwjenje polěpšić. Jeli nastawk waš problem njerozrisuje a chceće prašenje stajić, wobroćće so na naše zhromodźenstwo pomocy, kotrež na to čaka, wam na @FirefoxSupport na Twitter a /r/firefox na Reddit pomhać.

Pomoc přepytać

Hladajće so wobšudstwa pomocy. Njenamołwimy was ženje, telefonowe čisło zawołać, SMS pósłać abo wosobinske informacije přeradźić. Prošu zdźělće podhladnu aktiwitu z pomocu nastajenja „Znjewužiwanje zdźělić“.

Dalše informacije

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

  • 3 wotmołwy
  • 3 maja tutón problem
  • 54 napohladow
  • Poslednja wotmołwa wot 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.

Wšě wotmołwy (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;
}