Default h2,h3,h4 sizes and how to change them.
- The topic ‘Default h2,h3,h4 sizes and how to change them.’ is closed to new replies.
Need help? Check out our Support site, then
Hey Taras,
It’s been a lot since the last time I have been writing in here. I am doing some changes on my website and want to improve my onpage seo. Can you provide me a css which will make the h2 and h3 tags the same as size, but without any new classes. I would like to save myself the manual edit of all pages.
Thanks in advance,
Konstantin
The blog I need help with is: (visible only to logged in users)
Hey there,
I’ve managed to change them myself. I thought that there will be some problem with the responsiveness on different devices but its ok.
Thanks!
Hello Konstantin,
Sorry for the delay.
“I thought that there will be some problem with the responsiveness on different devices but its ok.”
– You can change font size of these heading elements in smaller screens here is an example:
/* mobile view */
h2, h3 {
font-size: 18px;
}
/* regular view */
@media (min-width: 500px) {
h2, h3 {
font-size: 21px;
}
}
Please let me know if you have any additional questions.
Kind regards,
Taras