Archived topic
Heading 3 (H3) font size on mobile
1 reply · Started by Slaven on March 31, 2019
Viewing posts 1–2 of 2
How to add H3 font size for mobile.
Can you please write CSS code for this.
Thank you
Hi there,
try this:
@media (max-width: 768px) {
h3 {
font-size: 20px;
}
}
This archived topic is closed to new replies.