How do I change the height of my Bookmarks Toolbar on Firefox 11.0 ?
Hello, I just installed Firefox 11.0 and I noticed that the "line height" of the Bookmarks Toolbar grew a little bit. I was wondering if anyone could point me a way to where I can edit this.
Here's a comparison screenshot: http://img38.imageshack.us/img38/934/firefoxbookmark.png
Much thanks, K
Solução escolhida
You can make targeted changes to the appearance of the Bookmarks toolbar by writing style rules for the #PersonalToolbar. For example:
#PersonalToolbar {max-height:19px}
To apply the rule, you can use the old userChrome.css method, or the more user-friendly Stylish extension.
Examples of how to use Stylish can be found in these threads: Ink wasting because pages with dark backgrounds still print despite background print checkbox being unchecked; Using Foxfire 5 in Win 7 I lost the highlighting of current BM in use (as compared to Win XA FF 5) .
Ler esta resposta 👍 1Todas as respostas (3)
Solução escolhida
You can make targeted changes to the appearance of the Bookmarks toolbar by writing style rules for the #PersonalToolbar. For example:
#PersonalToolbar {max-height:19px}
To apply the rule, you can use the old userChrome.css method, or the more user-friendly Stylish extension.
Examples of how to use Stylish can be found in these threads: Ink wasting because pages with dark backgrounds still print despite background print checkbox being unchecked; Using Foxfire 5 in Win 7 I lost the highlighting of current BM in use (as compared to Win XA FF 5) .
Alterado por jscher2000 - Support Volunteer em
You may need to use a negative margin-top to reduce the height of the bookmarks toolbar in case the problem is with the large Back and Forward icons on the Navigation Toolbar.
Thank you jscher2000 and cor-el! :D
Edit: Just came across this and thought I might share an alternative solution.
#personal-bookmarks toolbarseparator {
min-height: 5px!important;
}
Alterado por kzero0 em