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

    Hi,

    The menu and heading font sizes are a bit small so I am wanting to increase the size a bit. I have no idea how to code. So an easy answer would help tremendously.

    Thanks,

    Sash

    #132113

    you can do it in quick css like this:

    /*top menu font & size*/

    #top .main_menu .menu li > a {

    width: 100%;

    height: auto;

    font-size: 20px;

    font-weight: normal;

    }

    /*top submenu font & size*/

    #top .main_menu .menu li ul a {

    width: 100%;

    height: auto;

    font-size: 20px;

    font-weight: normal;

    }

    or you can just install plugin : typography

    and add elements for :

    #top .main_menu .menu

    select font and size etc

    #132114

    Hi,

    @mrkuji: Thanks for the tip. :)

    @Sashmoolman: You can add this on your custom.cs or Quick CSS, for the menu:

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

    this is for the headings, you can use this:

    h1 {
    font-size: 30px !important;
    }

    for h2

    h2 {
    font-size: 20px !important;
    }

    so on and so forth.

    Regards,

    Ismael

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘changing menu and headings font size’ is closed to new replies.