ابحث في الدعم

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

How can I change the file folder icon on my favorite links bar?

  • 8 ردود
  • 2 have this problem
  • 1584 views
  • آخر ردّ كتبه busybeeisme

more options

I would like to use icons to identify my link folders instead of generic folder and words. I have this capability on Internet Explorer. Would like to know if this is something that can be done in Firefox. Thanks for your time and answer.

I would like to use icons to identify my link folders instead of generic folder and words. I have this capability on Internet Explorer. Would like to know if this is something that can be done in Firefox. Thanks for your time and answer.

الحل المُختار

Internet Explorer uses a file and folder structure on the hard drive and thus can easily change the icon of a favorite file and folder. Edge and Firefox use a database file and would require a lot more work.

You can experiment with code like this in userChrome.css to see if that works. The bookmark-name needs to be exact and the bookmark-icon needs to be in the chrome folder where userChrome.css is located. Remove the [container] attribute if you need it for regular bookmarks.

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#personal-bookmarks .bookmark-item[container][label="bookmark-name"],
#bookmarksMenuPopup .bookmark-item[container][label="bookmark-name"] {
 list-style-image:url('bookmark-icon.png')!important;
 -moz-image-region:auto!important;
}
Read this answer in context 👍 0

All Replies (8)

more options
more options

busybeeisme said

I would like to use icons to identify my link folders instead of generic folder and words. I have this capability on Internet Explorer.

Do you mean that you want to change all the gray folders to a different icon (same icon for all), or that you want to customize the icon for each folder (which seems like a much more complicated project)?

more options

Internet Explorer has the option to add Individual icons for each folder as an attribute kept in the properties tab of each folder. I create my own .ico files and use them to cut down the visual noise on the favorites bar.

It is the one feature on Internet Explorer that keeps me from abandoning it altogether and the only feature that keeps me from fully embracing Firefox. Microsoft Edge doesn't have this feature either.

more options

busybeeisme said

Internet Explorer has the option to add Individual icons for each folder as an attribute kept in the properties tab of each folder. I create my own .ico files and use them to cut down the visual noise on the favorites bar. It is the one feature on Internet Explorer that keeps me from abandoning it altogether and the only feature that keeps me from fully embracing Firefox. Microsoft Edge doesn't have this feature either.

Fyi : no such thing in Firefox called the favorites bar

more options

Firefox calls it bookmarks.

more options

busybeeisme said

Internet Explorer has the option to add Individual icons for each folder as an attribute kept in the properties tab of each folder. I create my own .ico files and use them to cut down the visual noise on the favorites bar. It is the one feature on Internet Explorer that keeps me from abandoning it altogether and the only feature that keeps me from fully embracing Firefox. Microsoft Edge doesn't have this feature either.

Sorry, I think because of the new Security for Firefox you will not find at this time ant extensions that do what would like and the default bookmarks lack that for folders. Though you can edit a bookmark so when mouse over it it can say what you want to.

To submit suggestions for new or changed features, may I suggest: Feedback: https://qsurvey.mozilla.com/s3/FirefoxInput/ or https://discourse.mozilla.org/c/add-ons

Please let us know if this solved your issue or if need further assistance.

more options

الحل المُختار

Internet Explorer uses a file and folder structure on the hard drive and thus can easily change the icon of a favorite file and folder. Edge and Firefox use a database file and would require a lot more work.

You can experiment with code like this in userChrome.css to see if that works. The bookmark-name needs to be exact and the bookmark-icon needs to be in the chrome folder where userChrome.css is located. Remove the [container] attribute if you need it for regular bookmarks.

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

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

Thanks very much for your time and your answer.