I habe a question how i can make the h1, h2, h3, h4 .. responsive that i have a smaller size of the headlines when i visit the page with a smartphone or tablet
Hey cdreise,
Please try the following in Quick CSS under Enfold->General Styling:
@media only screen and (max-width: 990px) {
h1 {
font-size:24px !important;
}
h2 {
font-size:20px !important;
}
h3 {
font-size:16px !important;
}
h4 {
font-size:12px !important;
}
}
Adjust the values to your liking.
Best regards,
Rikard
Brilliant, thanks that works fine!