Join us and the lead editor of IRL, Mozilla's multi-award-winning podcast, for a behind-the-scenes look at the pod and to contribute your ideas for the next season, themed: "AI and ME." Mark your calendar and join our Community Call on Wednesday, Aug 7, 17:00–17:45 UTC. See you there!

Rechercher dans l’assistance

Évitez les escroqueries à l’assistance. Nous ne vous demanderons jamais d’appeler ou d’envoyer un SMS à un numéro de téléphone ou de partager des informations personnelles. Veuillez signaler toute activité suspecte en utilisant l’option « Signaler un abus ».

En savoir plus

Can icons be added to bookmark folders you make

  • 2 réponses
  • 5 ont ce problème
  • 1 vue
  • Dernière réponse par 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.

Toutes les réponses (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: