Firefox 3 is great. But there is one minor change which annoyed me: those new arrows next to each folder of the bookmarks toolbar. It takes up a lot of space for nothing, preventing all my folders to appear within the width of my screen. Luckily, there is a way to hide them:
#> cd ~/.mozilla/firefox/DefaultUser/chrome #> cp userChrome-example.css userChrome.css
edit userChrome.css with your favorite text editor:
#> vi userChrome.css
add the following line:
#PersonalToolbar .toolbarbutton-menu-dropmarker { display: none !important; }
(found in http://ubuntuforums.org/showthread.php?t=732134 )
- 1