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 purpouse and just takes up horizontal space, is there a way to remove it?

link|improve this question

54% accept rate
feedback

2 Answers

up vote 3 down vote accepted

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

link|improve this answer
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.