Firefox Bookmark Toolbar

how do change the spacing of on the bookmark toolbar (or what part of the browser.css do i need to change)?

i want to change the spacing so all my folders on the bookmark toolbar are closer together

#121898

In "skin/classic/browser/browser.css"

Look for

/* ::::: bookmark buttons ::::: */

There should be some lines this:

toolbarbutton.bookmark-item[type=menu] {
 padding-left: 7px;
}

toolbarbutton.bookmark-item[type=menu] > .toolbarbutton-menu-dropmarker {
 padding-right: 7px;
}

toolbarbutton.bookmark-item:not([type=menu]) {
 -moz-binding: url("chrome://browser/skin/browser.xml#bm-toolbarbutton");
}

toolbarbutton.bookmark-item {
 margin: 1px;
 padding: 1px 0px 1px 0px;
 min-width: 0;
 max-width: 13em;
 font-weight: bold;
 color: #565656;
 border: none !important;
}

maybe some of those values could be changed to make things work.

#122112

Hi, I have the same question, did exist a other solution, because I didn't found in the new Version FF 1.5.0.7 "browser.css", thank you in advance for any answer.

EDIT:

I have a solution!

In "userchrome.css" put this inside:

-------------------

#personal-bookmarks .bookmark-item {

padding-left: 0px !important;

padding-right: 0px !important; }

-------------------

Thanks anyway!

#425788