Ky sajt do të funksionojë me kufizime, teksa bëjmë mirëmbajtjen e tij për të përmirësuar punën tuaj. Nëse një artikull nuk e zgjidh problemin tuaj dhe dëshironi të bëni një pyetje, kemi bashkësinë tonë të asistencës, e gatshme për t’ju ndihmuar, te @FirefoxSupport në Twitter dhe/r/firefox në Reddit.

Kërkoni te Asistenca

Shmangni karremëzime gjoja asistence. S’do t’ju kërkojmë kurrë të bëni një thirrje apo të dërgoni tekst te një numër telefoni, apo të na jepni të dhëna personale. Ju lutemi, raportoni veprimtari të dyshimtë duke përdorur mundësinë “Raportoni Abuzim”.

Mësoni Më Tepër

Can icons be added to bookmark folders you make

  • 2 përgjigje
  • 5 e kanë hasur këtë problem
  • 1 parje
  • Përgjigjja më e re nga 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.

Krejt Përgjigjet (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: