Front / home page's font size too big for mobile view

Dear Movin

Can I ask for your help about the front / homepage’s font size in mobile view? On Iphone 5, the fonts look too big on the screen. The font size looks on PC screen. Is it possible for adjust the font size to a more acceptable view in mobile view? Thanks!

Attached mobile screenshots.

Hi @wanderer74,

I hope you are well today and thank you for your question.

Sure we can adjust it developing custom CSS code.

Could you please share me your site URL where it’s displaying so that i can help you to achieve it?

Best Regards,
Movin

Hi Movin

The page url is the main page: http://whywendywrites.com/

Thanks!

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

@media (max-width: 568px){
#page .flex-caption h2 {
    font-size: 22px;
}
.flex-caption .read-more a{
    font-size: 10px;
}
}