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

Wannan tattunawa ta zama daɗaɗɗiya. Yi sabuwar tambaya idan ka na bukatar taimako.

Can icons be added to bookmark folders you make

  • 2 amsoshi
  • 5 sa na da wannan matsala
  • 1 view
  • Amsa ta ƙarshe daga 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: