• When my website is looked at on a mobile device, the font of Intro Title and Description does not decrease, falls off the page, and looks very unprofessional. Is there any fixes for this with either code, plugins, or theme options? Seems like it should be an easy fix and surprised it does this at all.

    https://www.villagescustomlandscaping.com

Viewing 1 replies (of 1 total)
  • Are you referring to the text “JOHN’S TREE SERVICE AND CUSTOM LANDSCAPING” and “SERVING THE VILLAGES AND SURROUNDING AREAS FOR MORE THAN 15 YEARS.”? If so, you could use some custom CSS to fix it:

    @media screen and (max-width: 767px) {
        .intro h2 {
            font-size: 40px;
            line-height: 1.2;
        }
        
        .intro h3 {
            font-size: 24px;
            line-height: 1.2;
        }
    }

    WordPress 4.7 has a built-in custom CSS option at Dashboard > Appearance > Customize > Additional CSS; alternatively, you could use a custom CSS plugin or create a child theme.

Viewing 1 replies (of 1 total)
  • The topic ‘Mobile Font Not Optimized’ is closed to new replies.