Change font size in "call for action" on phone

Hello!

First of all, i’m sorry for my English ;))

I have one small question. How i could to change font size of text in block “call for action”, when i use my site with phone?

Font size is so big and takes the half of phone’s screen.

On laptop, PC and iPad it’s okay.

Hi @ingword,

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

You can change the font size of the text by adding the following CSS code in the Custom CSS option of the latest version of Sparkling theme on the below path.

Admin Area -> Appearance -> Customize -> Sparkling Options -> Other -> Custom CSS

@media ( max-width:480px ){
    span.cfa-text{
        font-size: 16px;
    }
}

Change the font size 16px in the above code to whatever you want to display.

Best Regards,
Movin