Firefox 4.x Ordnersymbole der Lesezeichenleiste entfernen
16. Mai 2011 von Ole
Kann mir jemand verraten wie ich in Firefox 4 die Ordnersymbole in der Lesezeichenleiste entfernen kann?
On a mac, ff 4 :
Go to /Users/[your username]/Library/Application Support/Firefox/Profiles/[*].default/chrome
Rename file userChrome-example.css to userChrome.css
Open it with text editor and copy and paste the following code after the line which starts with “@name”:
/* Hide Bookmark Folder Icon */
.bookmark-item[type="menu"] > .toolbarbutton-icon {
display: none !important;
}
/* Remove Bookmark Item Icons */
#personal-bookmarks toolbarbutton:not([type=menu]) image {
display: none !important;
-moz-margin-end: 0px !important;
}
Save it, restart ff, done.