Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #22986

    How do we make the fonts bigger?

    Main font and main menu font that is…

    #118146

    1) To change the font size/line height of the main font insert following code into the quick css field:

    body {
    font: 13px/1.65em "HelveticaNeue", "Helvetica Neue",Helvetica,Arial,sans-serif;
    }

    and replace 13px and 1.65em (line height) with your custom values.

    2) Use following css code for the main menu font:

    .main_menu ul:first-child>li>a {
    font-size: 13px;
    }

    #118147

    Great! Thanks!

    Im used to doing stuff like this at child themes, but I guess this way also is safe for future updates.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Font size’ is closed to new replies.