Remove bookmark folder icon from bookmark toolbar

User Help for Mozilla Firefox
Post Reply
Jeffouille
Posts: 2
Joined: January 30th, 2018, 11:23 am

Remove bookmark folder icon from bookmark toolbar

Post by Jeffouille »

Hi everybody,

I'm looking for some css code in order to remove Favicons and Folder icons from my bookmark toolbar.

To remove the favicons, I've allready found :
#personal-bookmarks .bookmark-item:not([container]) .toolbarbutton-icon { display: none !important; }

But the folder icons still on the bookmark before te text.

Thanks for helping
User avatar
smsmith
Moderator
Posts: 19979
Joined: December 7th, 2004, 8:51 pm
Location: Indiana

Re: Remove bookmark folder icon from bookmark toolbar

Post by smsmith »

Code: Select all

#PlacesToolbarItems > .bookmark-item > .toolbarbutton-icon {
  display: none !important;
}
That will remove both the favicon and the folder icon.
Give a man a fish, and he eats for a day. Teach a man to fish, and he eats for a lifetime.
I like poetry, long walks on the beach and poking dead things with a stick.
Please do not PM me for personal support. Keep posts here in the Forums instead and we all learn.
Jeffouille
Posts: 2
Joined: January 30th, 2018, 11:23 am

Re: Remove bookmark folder icon from bookmark toolbar

Post by Jeffouille »

Just perfect ... thanks a lot
Post Reply