• Hi there,

    Can anyone help me with some css to adjust the mobile size of the <p> text at this website?

    Many thanks,

    Tess

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @tessadesign,

    To adjust the text size on mobile phone you can use this code:

    
    @media(max-width: 767px){
    p {
        font-size: 20px !important;
    }
    }
    

    This would affect all text that is labeled as a paragraph (<p>) so make sure to check if this suits your needs.

    Of course, the values can be adjusted per your needs and preference, simply change the numbers to the most suitable value.

    I hope this helps, have a nice day,
    Andrija

    Thread Starter tessadesign

    (@tessadesign)

    Thanks so much, that’s perfect.

    Tes

    My pleasure @tessadesign,

    Have a wonderful day,
    Andrija

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change Mobile Text Size, Go Theme’ is closed to new replies.