Remove down arrow from folders in personal toolbar in Firefox

3

1

In Linux version of firefox (specifically in my case Debian's rebranded Iceweasel), folders of bookmarks in the personal toolbar show a little down arrow on the right of the name. It serves no real purpose and just takes up horizontal space, is there a way to remove it?

Matteo Riva

Posted 2010-05-29T06:08:41.683

Reputation: 8 341

Answers

3

put below code in ~/.mozilla/firefox/XXXX.default/chrome/userChrome.css

/*Hide Bookmark Folder Icon*/
#bookmarksBarContent toolbarbutton[type=menu] image {
display: none !important;
-moz-margin-end: 0px !important;
}
#bookmarksBarContent toolbarbutton[container="true"] .toolbarbutton-menu-dropmarker {
display: none !important;
}

reference: http://support.mozilla.com/en-US/questions/760156

Dyno Fu

Posted 2010-05-29T06:08:41.683

Reputation: 206

1

Apparently the correct code is :

/*Hide Bookmark Folder Icon*/
/*#personal-bookmarks toolbarbutton[type=menu] image {
display: none !important;
-moz-margin-end: 0px !important;
}*/
#personal-bookmarks toolbarbutton[container="true"] .toolbarbutton-menu-dropmarker {
display: none !important;
}

in FF 9.01, Ubuntu 11.10 - and I think this still leaves extra free space

Mr_and_Mrs_D

Posted 2010-05-29T06:08:41.683

Reputation: 666