Find the answer to your Linux question:
Results 1 to 2 of 2
I am trying to change the font size in the menu entries in Iceweasel. I've read some information about userChrome.css. I've edited the file ~/.mozilla/firefox/8p3dzz7b.default/chrome/userChrome-example.css and saved it as userChrome.css, ...
  1. #1
    Linux Newbie
    Join Date
    Dec 2008
    Posts
    135

    [SOLVED] How do I changed fonts size in Iceweasel menu: userChrome.css

    I am trying to change the font size in the menu entries in Iceweasel.
    I've read some information about userChrome.css. I've edited the file ~/.mozilla/firefox/8p3dzz7b.default/chrome/userChrome-example.css and saved it as userChrome.css, but can't get the menu size changed.
    Thanks for help.
    Last edited by JoeS; 04-14-2011 at 01:26 AM.

  2. #2
    Linux Newbie
    Join Date
    Dec 2008
    Posts
    135
    I found an answer after some more trial:

    /*
    * Some possible accessibility enhancements:
    */
    /*
    * Make all the default font sizes 20 pt:
    */
    * {
    font-size: 12pt !important
    }
    *
    /*
    * Make menu items in particular 15 pt instead of the default size:
    */
    menupopup > * {
    font-size: 12pt !important
    }
    *
    /*

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •