Zoeken in Support

Vermijd ondersteuningsscams. We zullen u nooit vragen een telefoonnummer te bellen, er een sms naar te sturen of persoonlijke gegevens te delen. Meld verdachte activiteit met de optie ‘Misbruik melden’.

Learn More

Deze conversatie is gearchiveerd. Stel een nieuwe vraag als u hulp nodig hebt.

Bookmark dropdown folder icon and Bookmark list star icon

  • 4 antwoorden
  • 2 hebben dit probleem
  • 14 weergaven
  • Laatste antwoord van benpin

more options

Hi,

Does anyone know how to remove the favicon (icons) from the bookmark folders? I know how to remove the regular icons from the bookmark toolbar in userChrome.css with:

scrollbox#PlacesToolbarItems > toolbarbutton.bookmark-item > .toolbarbutton-icon {

 display: none; 

}

I'm also wondering how to remove the star next to the bookmarks menu. I used to do this with bookmark deiconizer but that doesn't work anymore, and the above code doesn't remove the star.

http://i.imgur.com/1AlB4n6.png

I've circled what I want to hide.

Thanks in advance

Hi, Does anyone know how to remove the favicon (icons) from the bookmark folders? I know how to remove the regular icons from the bookmark toolbar in userChrome.css with: scrollbox#PlacesToolbarItems > toolbarbutton.bookmark-item > .toolbarbutton-icon { display: none; } I'm also wondering how to remove the star next to the bookmarks menu. I used to do this with bookmark deiconizer but that doesn't work anymore, and the above code doesn't remove the star. http://i.imgur.com/1AlB4n6.png I've circled what I want to hide. Thanks in advance

Gekozen oplossing

Try this code in userChrome.css

#PlacesToolbarItems .bookmark-item .menu-iconic-icon { display:none!important; }

#PersonalToolbar #bookmarks-menu-button .toolbarbutton-icon { display:none!important; }
Dit antwoord in context lezen 👍 1

Alle antwoorden (4)

more options

Assuming you have already tried this and/or this already?

more options

Yeah already tried those.

more options

Gekozen oplossing

Try this code in userChrome.css

#PlacesToolbarItems .bookmark-item .menu-iconic-icon { display:none!important; }

#PersonalToolbar #bookmarks-menu-button .toolbarbutton-icon { display:none!important; }
more options

Thanks that did the trick!