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!

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

Can icons be added to bookmark folders you make

  • 2 replies
  • 5 have this problem
  • 1 view
  • Last reply by cor-el

more options

when i make a bookmark folder is there a way to add a icon to the folder to make it stand out from all the other plain bookmark folders i make.

when i make a bookmark folder is there a way to add a icon to the folder to make it stand out from all the other plain bookmark folders i make.

All Replies (2)

more options

Yes, but it is complicated. Familiarity with CSS and userChrome.css code is needed and you would need a custom image to apply with the CSS style code; one for each unique folder icon you wanted.

more options

You will have to use code like this in the file userChrome.css below the @namespace line.
The "Folder_Name" needs to be an exact match (case sensitive)

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
#personal-bookmarks .bookmark-item[container][label="Folder_Name"] {
 list-style-image:url('folder-icon.png')!important;-moz-image-region:auto!important;
}


See also: