Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #24232

    Hi,

    I would like to know how to increase the font sizes in the theme (especially the regular text font size as I find it too small).

    Also, I noticed that when using a Special Heading with default style it isn’t responsive (other 2 styles are).

    Thanks.

    #122836

    Hi,

    You can edit base.php, look for #Typography section.

    You can use Media Queries to target the special heading.

    /* All Mobile Sizes (devices and browser) */
    @media only screen and (max-width: 767px) {
    .av-special-heading h3 {
    YOUR STYLE HERE
    }
    }

    Regards,

    Ismael

    #122837

    Hi Ismael,

    I can’t seem to find the base.php file in the editor screen inside the WordPress admin panel. I can’t access and edit this file from there?

    #122838

    Hi,

    You can access them via FTP or your cpanel.

    Regards,

    Ismael

    #122839

    OK. found them but which one control the font size of the regular text?

    #122840

    How can I increase the size of the menu text? I can’t see this in the base.css file

    Thanks

    #122841

    @bakbek – insert following code into the quick css field

    body{
    font-size: 13px;
    line-height: 1.65em;
    }

    and change the font size value & line height value.

    @Ukiain – use following code

    #top .main_menu .menu > li{
    font-size: 13px;
    }

    and change the font size value if necessary.

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘How to Increase Font Size and Special Heading Isn't Responsive’ is closed to new replies.