Increase the size of icons in Firefox menubar (Solved)

Using applications, configuring, problems
Post Reply
Message
Author
don922
Posts: 433
Joined: Sat 19 Jan 2008, 07:58
Location: Nong Yai Buah

Increase the size of icons in Firefox menubar (Solved)

#1 Post 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.
Last edited by don922 on Tue 27 Mar 2012, 06:17, edited 2 times in total.
[color=green][i]Don -- Thailand[/i][/color]
[url=http://www.puppylinux.com][img]http://tinypic.com/4e0tojl.jpg[/img][/url]

don922
Posts: 433
Joined: Sat 19 Jan 2008, 07:58
Location: Nong Yai Buah

#2 Post 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;
}
[color=green][i]Don -- Thailand[/i][/color]
[url=http://www.puppylinux.com][img]http://tinypic.com/4e0tojl.jpg[/img][/url]

Post Reply