Archived topic
Change font size for body and headings for tablet and mobile
1 reply · Started by Jagoba on May 16, 2019
Viewing posts 1–2 of 2
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!
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 */
}
This archived topic is closed to new replies.