Vyhľadajte odpoveď

Vyhnite sa podvodom s podporou. Nikdy vás nebudeme žiadať, aby ste zavolali alebo poslali SMS na telefónne číslo alebo zdieľali osobné informácie. Nahláste prosím podozrivú aktivitu použitím voľby “Nahlásiť zneužitie”.

Learn More

Bookmark dropdown folder icon and Bookmark list star icon

  • 4 odpovede
  • 2 majú tento problém
  • 15 zobrazení
  • Posledná odpoveď od 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

Vybrané riešenie

Try this code in userChrome.css

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

#PersonalToolbar #bookmarks-menu-button .toolbarbutton-icon { display:none!important; }
Čítať túto odpoveď v kontexte 👍 1

Všetky odpovede (4)

more options

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

more options

Yeah already tried those.

more options

Vybrané riešenie

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!