[Support request] Change font size for body and headings for tablet and mobile

Home Forums Support [Support request] Change font size for body and headings for tablet and mobile

Home Forums Support Change font size for body and headings for tablet and mobile

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #902160
    Jagoba

    Hi,

    I would like to change the font size for the complete website for body, headings and buttons when using tablet and mobile (different size for each one?

    Is it possible?
    Thanks!

    #902381
    David
    Staff
    Customer Support

    Hi there,

    would require CSS within media queries eg.

    For Tablet:

    @media (min-width: 769px) and (max-width: 1024px) {
        p {
            font-size: XXpx;
        }
        h1 {
            font-size: XXpx;
        }
        h2 {
            font-size: XXpx;
        }
        h3 {
            font-size: XXpx;
        }
        /* More styles here */
    }

    Then to specifically target Mobile this media query:

    @media (max-width: 768px) {
        /* mobile styles here */
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.