Zoeken in Support

Vermijd ondersteuningsscams. We zullen u nooit vragen een telefoonnummer te bellen, er een sms naar te sturen of persoonlijke gegevens te delen. Meld verdachte activiteit met de optie ‘Misbruik melden’.

Learn More

Deze conversatie is gearchiveerd. Stel een nieuwe vraag als u hulp nodig hebt.

Adjusting Icon spacing on Firefox Toolbars (using CSS)

  • 3 antwoorden
  • 1 heeft dit probleem
  • 18 weergaven
  • Laatste antwoord van cor-el

more options

I am trying to adjust the size and spacing of icons on specific Firefox toolbars (namely: Bookmarks toolbar, Status Bar, and Tab Bar).

I was originally using a very simple command in my userchrome,css to achieve this.

toolbarbutton {min-width: 30px !important;}

This sized and spaced the buttons nicely on ALL my toolbars at once (which was fine), but it also has an unwanted effect on some of the items in Firefox's Panel menu (i.e. the panel that opens when you click on the 'hamburger' menu).

I would therefore like to know how to exclude items in the Panel from being affected by the command above, or (even better still) how to apply the min-width command individually to each of the 3 toolbars (Bookmarks toolbar, Status Bar, Tab Bar) so they can be adjusted independently if needed.

Thanks

I am trying to adjust the size and spacing of icons on specific Firefox toolbars (namely: Bookmarks toolbar, Status Bar, and Tab Bar). I was originally using a very simple command in my userchrome,css to achieve this. toolbarbutton {min-width: 30px !important;} This sized and spaced the buttons nicely on ALL my toolbars at once (which was fine), but it also has an unwanted effect on some of the items in Firefox's Panel menu (i.e. the panel that opens when you click on the 'hamburger' menu). I would therefore like to know how to exclude items in the Panel from being affected by the command above, or (even better still) how to apply the min-width command individually to each of the 3 toolbars (Bookmarks toolbar, Status Bar, Tab Bar) so they can be adjusted independently if needed. Thanks

Alle antwoorden (3)

more options

What extensions and themes do you have installed?

The Status Bar was removed from Firefox 4.0, so if you have that now it must have been "added" by an extension or other customization.

As far as code to 'ID' the Tab bar via css:

#TabsToolbar

And the Bookmarks Toolbar:

#PersonalToolbar
more options

I'm using Status 4 Evar for my status bar. This used to have the ID #status4evar-status-bar but in recent versions it seems to also work with #status-bar. I can use either ID value to change the color or size of the status bar.

I already know the ID for each of the toolbars that I want to affect, but using the ID on its own just changes the toolbar background and not the 'buttons actually on the toolbar.

If I put the ID in front of the previous command that I was using, then that doesn't work either. Nothing changes.

e.g. #status-bar toolbarbutton {min-width: 30px !important;}

more options

Did you use the DOM Inspector to check what rules are applied to the toolbar buttons?

Note that in some cases you may have to use -moz-appearance:none!important; to override CSS rules that are applied automatically.


Bewerkt door cor-el op