1. You are viewing our forum as a guest. For full access please Register. WindowsBBS.com is completely free, paid for by advertisers and donations.

Resolved how to change the size of the font in the menu-bar?

Discussion in 'Firefox, Thunderbird & SeaMonkey' started by savagcl, 2014/06/16.

  1. 2014/06/16
    savagcl Lifetime Subscription

    savagcl Geek Member Thread Starter

    Joined:
    2003/06/09
    Messages:
    1,559
    Likes Received:
    7
    menu-bar is very small, page font size is good.
    Also is there a way to make the menu-bar show as bold?

    thanks,
     
  2. 2014/06/16
    TonyT

    TonyT SuperGeek Staff

    Joined:
    2002/01/18
    Messages:
    9,068
    Likes Received:
    396

  3. to hide this advert.

  4. 2014/06/16
    savagcl Lifetime Subscription

    savagcl Geek Member Thread Starter

    Joined:
    2003/06/09
    Messages:
    1,559
    Likes Received:
    7
    could not find a chrome file anywhere.
    think it needs to be created.

    looks like that will need a little research, i'll get back.

    thanks for the links.

    clif

    (marking this as resolved and will get back if i run into trouble)
     
  5. 2014/06/16
    TonyT

    TonyT SuperGeek Staff

    Joined:
    2002/01/18
    Messages:
    9,068
    Likes Received:
    396
    Here's mine. Try it and see how it looks. You can edit the font-size, font-weight and font-family. A font-weight of 600 = the first level of bold.

    Code:
    /*
     * Do not remove the @namespace line -- it's required for correct functioning
     */
    @namespace url( "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul "); /* set default namespace to XUL */
    
    /* menus */
    menubar, menubutton, menulist, menu, menuitem, .tree-rows {
      font-family: Trebuchet MS !important;
      font-size: 3.7mm !important;
      font-weight: 550 !important;
    }
    
    /* hide toolbar borders */
    menubar, toolbox, toolbar {
    border-style: none !important;
    }
     
  6. 2014/06/16
    savagcl Lifetime Subscription

    savagcl Geek Member Thread Starter

    Joined:
    2003/06/09
    Messages:
    1,559
    Likes Received:
    7
    Got it! looks good

    thanks, TonyT

    One more - is it the same format for bookmarks toolbar

    appreciate the help!
     
  7. 2014/06/17
    TonyT

    TonyT SuperGeek Staff

    Joined:
    2002/01/18
    Messages:
    9,068
    Likes Received:
    396
    For Bookmarks Toolbar use these 2 and change the font-size to your liking and change the width & height of the toolbarbutton-icon to your liking.:
    Code:
    #PersonalToolbar .bookmark-item {
      font-size:18px !important;
    }
    .bookmark-item:not(#bookmarks-menu-button) > .toolbarbutton-icon {
      width: 20px !important; /* 25% over 16px default */
      height: 20px !important; /* 25% over 16px default */
    }
    Education:
    CSS font-size: http://www.w3.org/Style/Examples/007/units.en.html
    The !important declaration gives the user's styles (your styles) seniority over the author's styles. For example, on a Webpage the author may declare fonts to be a certain size but your browser settings or userChrome.css can override them. And similarly, the FF install has default sizes for its interface and menus, and your userChrome.css can override them too. Thus the use of !Important so as to always override the defaults.
     

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.