Sykje yn Support

Mij stipescams. Wy sille jo nea freegje in telefoannûmer te beljen, der in sms nei ta te stjoeren of persoanlike gegevens te dielen. Meld fertochte aktiviteit mei de opsje ‘Misbrûk melde’.

Learn More

Dizze konversaasje is argivearre. Stel in nije fraach as jo help nedich hawwe.

Is it possible to replace the folder image in the bookmarks list with little images to help identify the folder. I see that many places I have bookmarked automatically come with a little picture (the CBS "eye", New York Times Old English Script).

  • 1 antwurd
  • 1 hat dit probleem
  • 1 werjefte
  • Lêste antwurd fan cor-el

more options

When I open my list of bookmarks most of the folders I have established have only the little file folder icon to the left. I would like to replace this file folder with some little picture or symbol to make the folders more easily identifiable. Is this possible?

When I open my list of bookmarks most of the folders I have established have only the little file folder icon to the left. I would like to replace this file folder with some little picture or symbol to make the folders more easily identifiable. Is this possible?

Alle antwurden (1)

more options

There aren't extensions that can replace the favicon of a bookmarks folder AFAIK, so you will have to do that via code in userChrome.css in the chrome folder below the @namespace line.

  • Help > Troubleshooting Information > Profile Directory: Open Containing Folder

You can use the ChromEdit Plus or Stylish extension to have easier access to the customization files.

Folder names (label="name") are cases sensitive and need to match exactly what you get via the properties Pace the folder-icon.png icons in the same chrome folder. This code works for icons on the Bookmarks Toolbar.


#personal-bookmarks .bookmark-item[container][label="Folder_Name"]{
 list-style-image:url('folder-icon.png')!important;
 -moz-image-region:auto!important;
}