Site logo

Archived topic

Adjust font size and images on all mobile devices

1 reply · Started by Theresia on July 26, 2018

Viewing posts 1–2 of 2

Hi,
i use GeneratePress Premium. Can you tell me how to integrate css that all font sizes, paragraphs and also the images are automatically adapted to mobile devices. Which css should I use?

Thanks Theresia

Hi there,

it looks like you are using Elementor to build your pages, which comes with its own responsive controls

For fonts you can set some global CSS like so - just add the necessary elements you need to this code, you may find that it doesn't work if you have made Typography changes directly in Elementor.

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    h1 {
        font-size: 28px;
    }
    h2 {
        font-size: 28px;
    }    
}
This archived topic is closed to new replies.