menu font too small

User Help for Mozilla Firefox
Locked
bibo12
Posts: 2
Joined: May 9th, 2011, 12:07 am

menu font too small

Post by bibo12 »

hi there!

for my eyes menu fonts are too small. in Mozilla 3.xx I resolve that problem with adding
this in userChrome.css

menubar > menu,menupopup > menu, menupopup > menuitem,
* {
font-size: 9pt !important;
font-family: Copperplate Gothic Bold !important;
}

but on Mozilla 4 there is no help with that.... so what to do to increase font in menus

thanks in advance

bibo.........
User avatar
DanRaisch
Moderator
Posts: 127247
Joined: September 23rd, 2004, 8:57 pm
Location: Somewhere on the right coast

Re: menu font too small

Post by DanRaisch »

Moving to Firefox Support.
Vitesse
Posts: 1238
Joined: April 21st, 2011, 6:03 pm

Re: menu font too small

Post by Vitesse »

The description of the Theme Font and Size Changer extension suggests it might do the job without the need to change the registry:

Different from add-ons that enlarge and reduce text on web pages Theme Font and Size Changer changes the font size and font family in all windows, menus, toolbars etc within Firefox itself.


http://barisderin.com/?p=286
vasa1
Posts: 604
Joined: December 24th, 2010, 5:32 am

Re: menu font too small

Post by vasa1 »

bibo12 wrote:hi there!

for my eyes menu fonts are too small. in Mozilla 3.xx I resolve that problem with adding
this in userChrome.css

menubar > menu,menupopup > menu, menupopup > menuitem,
* {
font-size: 9pt !important;
font-family: Copperplate Gothic Bold !important;
}

but on Mozilla 4 there is no help with that.... so what to do to increase font in menus

thanks in advance

bibo.........


Bibo, your code works (with Aurora ~ Fx 5) when it is put into a Stylish sheet. You can consider using the Stylish add-on and you'll get more help at the forum here: http://userstyles.org/

This is what I tried:

Code: Select all

@namespace xul url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
menubar > menu,menupopup > menu, menupopup > menuitem {
font-size: 15pt !important;
font-family: Verdana !important;
}


Note that I didn't include the "*".

And I got the code I posted above to work in Fx 4.0.1 using plain userChrome.css. So installing the Stylish add-on may not be needed if you're not a compulsive tweaker.

In edit: And thank you for the code :) I'm going to use a bit of it since I too would prefer a slightly larger font than the "default".
vasa1
Posts: 604
Joined: December 24th, 2010, 5:32 am

Re: menu font too small

Post by vasa1 »

@bibo12,

This is what I'm using now:

Code: Select all

@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
*[disabled = "true"] {color: #222!important}

menubar, menu, menupopup, menuitem {-moz-appearance: none !important; font-size: 11pt !important; font-family: Verdana !important; color: #000 !important; background: #555 !important; border: 3px solid #555 !important; border-radius: 6px !important }

* .menu-iconic-left {display: none !important}

User avatar
dfoulkes
Posts: 22525
Joined: June 28th, 2008, 10:31 pm
Location: Mesquite, Nevada

Re: menu font too small

Post by dfoulkes »

I got this from somebody long ago and it still works fine in FF4.... just basic stuff for me.

Code: Select all

/* Global UI font for ALL menus-options and dropdown menus       */
    * { font-size: 13pt !important;  font-family: Verdana !important; }
As you can see she's (The CAT) always alert and on the prowl for Meoware !!
bibo12
Posts: 2
Joined: May 9th, 2011, 12:07 am

Re: menu font too small

Post by bibo12 »

aaaa..... thaaaanks a lot Guys!.......... :)
all of U are more than a kind.... I resolve problem with Stylish add-on
my eyes sends a hug to U............. :)
thanks again and spend a nice day

bibo..................
Surv
Guest

Re: menu font too small

Post by Surv »

Thank you so much for these! Just installed Firefox 4 and couldn't read any mensu or ULRs because of the text size. Downloaded Stylish, and used the code from dfoulkes (changing it to 12 pt Calibri). Will try the other code too to see if it works any different. Now I can use FF again -- this is something FF should have built in. Thanks again!!!
User avatar
dfoulkes
Posts: 22525
Joined: June 28th, 2008, 10:31 pm
Location: Mesquite, Nevada

Re: menu font too small

Post by dfoulkes »

You're Welcome! :D
As you can see she's (The CAT) always alert and on the prowl for Meoware !!
User avatar
BruceAWittmeier
Posts: 3076
Joined: June 9th, 2008, 10:53 am
Location: Near 37.501685 -80.147967

Re: menu font too small

Post by BruceAWittmeier »

The easiest way to find a good font is to open Notepad. Enter any text and then select Format/Font.

In the Font dialog box touch the font with the pointer then use the up/down arrows to find a good clean font. It displays examples of text in the preview window. You can cut and paste the name to avoid any spelling errors.

Remember in CSS any strings with spaces (some font names) must be quoted. Bibo - your original post may require quotes around the font family name.

Personally I like Tahoma - it is clean and very easy to read. 15pt Tahoma is very close to your op font family and size.
Last edited by BruceAWittmeier on September 28th, 2011, 6:37 pm, edited 1 time in total.
I often take a long windy road to my destination. Upon arrival, I wonder how I missed the shortcut.
User avatar
BruceAWittmeier
Posts: 3076
Joined: June 9th, 2008, 10:53 am
Location: Near 37.501685 -80.147967

Re: menu font too small

Post by BruceAWittmeier »

Sorry...I just go down the list of threads. Sorry for reopening.
I often take a long windy road to my destination. Upon arrival, I wonder how I missed the shortcut.
Locked