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

Lolu chungechunge lwabekwa kunqolobane. Uyacelwa ubuze umbuzo omusha uma udinga usizo.

Remove folder icons / favicons from bookmarks bar in Firefox 58.0.2

  • 6 uphendule
  • 2 zinale nkinga
  • 207 views
  • Igcine ukuphendulwa ngu frooned

more options

Previously this was achieved with userChrome.css in:

C:\Users\USER\AppData\Roaming\Mozilla\Firefox\Profiles\profile.default\chrome

source: http://forums.mozillazine.org/viewtopic.php?f=38&t=3035214#

This little hack seems to not be working any more. Can anyone confirm if they have this working in 58? This is a brand new install of windows 10 and I was running 58 with no bookmark bar icons on latest versions of release and nightly (before new install). Any input would be greatly appreciated.

Cheers...

Previously this was achieved with userChrome.css in: C:\Users\USER\AppData\Roaming\Mozilla\Firefox\Profiles\profile.default\chrome source: http://forums.mozillazine.org/viewtopic.php?f=38&t=3035214# This little hack seems to not be working any more. Can anyone confirm if they have this working in 58? This is a brand new install of windows 10 and I was running 58 with no bookmark bar icons on latest versions of release and nightly (before new install). Any input would be greatly appreciated. Cheers...

Isisombululo esikhethiwe

To remove icons for files and folders you need to use:

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

You need to use Unicode replacements for the emoticons to use them as text. For SVG images you will have to use icons.

Funda le mpendulo ngokuhambisana nalesi sihloko 👍 1

All Replies (6)

more options

Yes, the code works. Perhaps your original code needs more specificity, like so:

#main-window:not(#f) #personal-bookmarks .bookmark-item:not([container]) .toolbarbutton-text {
  display: none !important;
}
more options

ooh ok progress, i am doing the opposite though. Removing the icon to only show text (figured that out easy enough). Thank you!!

How would I have the same behavior for folders in the bookmark bar?

I like to name folders with an emoji and nix the folder icon so only the emoji is showing, thus folder icons!

more options

What works best for me is to create a new empty folder in your root C: directory (I name that folder "Firefox Images") and put all the images you want to use for the browser in there. For the bookmarks bar folder icon:

#main-window:not(#f) #personal-bookmarks .bookmark-item[container][label="xxx"] .toolbarbutton-icon {
  list-style-image: url("file:///C:/Firefox Images/bookmarks.png") !important;
}

Put the folders exact label name in place of xxx and point to the path where the image is, url("file:///C:/Firefox Images/image name and extension.here") I use the root directory C: because it keeps the path length short. You can even put a css file in there to put all your css related to bookmarks and name it, for example, bookmarks.css and in your user profile folder > chrome > userChrome.css file, add to the very top as first entry: @import url("file:///C:/Firefox Images/bookmarks.css"); This will keep you from switching back and forth between the two folders when you want to add/delete/edit images. So everything related to your bookmarks will be in one area/file.

Okulungisiwe ngu Sonny

more options

In what way are you using images? I want to display text or emoji only.

more options

Isisombululo Esikhethiwe

To remove icons for files and folders you need to use:

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

You need to use Unicode replacements for the emoticons to use them as text. For SVG images you will have to use icons.

more options

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

That was exactly what i needed. Now only the emoji's display and look like the folders were replaced with custom icons. sweeeet. tyvm!!