Page 1 of 1

Increase the size of icons in Firefox menubar (Solved)

Posted: Fri 23 Mar 2012, 05:28
by don922
I am trying to increase the height of icons on the menubar of Firefox 11.

Can anyone supply me a sample entry for doing this?

I increased the height of icons on the Navigation bar with the following entry to user.Chrome.css:

Code: Select all

#nav-bar toolbarbutton >
.toolbarbutton-icon {
height:32px!important;
width:32px!important;
} 
I haven't been able to get a similar entry to work for the menubar.

Posted: Sat 24 Mar 2012, 09:22
by don922
After searching a number of mozilla references I discovered that for purposes of userChrome.css entries the menubar is referred to as the toolbar-menubar.

The following entry in userChrome.css will increase the size of the icons in the menubar.

Code: Select all

#toolbar-menubar toolbarbutton >
.toolbarbutton-icon {
height:28px!important;
width:28px!important;
}