DEV Community

Cover image for How to hide bookmarks toolbar icons in Firefox (v106, 2022) on macOS
Aubrey Portwood
Aubrey Portwood

Posted on Edited on

How to hide bookmarks toolbar icons in Firefox (v106, 2022) on macOS

Add:

@-moz-document url(chrome://browser/content/browser.xhtml){
    #personal-bookmarks .bookmark-item:not([container]) .toolbarbutton-icon {
        display: none !important;
    }
}
Enter fullscreen mode Exit fullscreen mode

To:

/Users/<username>/Library/Application Support/Firefox/Profiles/xxxxxxxx.dev-edition-default/chrome/userChrome.css
Enter fullscreen mode Exit fullscreen mode

File contents in Sublime Text

Result is no icons in Firefox Toolbar

Top comments (0)