Hi,
How do I increase the font size of my website when it’s viewed on mobile?
Thanks!
Hi,
How do I increase the font size of my website when it’s viewed on mobile?
Thanks!
Hi there,
Thanks for writing in! Try adding the following code in the Theme Options > CSS:
@media screen and (max-width: 767px) {
p {
font-size: 16px;
}
}
If you would like to learn CSS, I am sharing few resources that you take a look to get started with CSS and an interesting tool that you can use to speed up the development process.
I recommend you to watch following video that will help you to get started with CSS.
Sometimes it can get a bit difficult to find out the right selector to be able to write the required CSS codes. A handy tool that can help you in this is Google Chrome dev tools. I am sharing the resource that you can refer to get started with dev tools.
https://developers.google.com/web/tools/chrome-devtools/css/
Hope this helps!
Thank you! And what about increasing the font size when viewing on a tablet?
Hi There,
That depends on how big the screen of your tablet. Please see your device’s Media Queries here.
Then use the font-size property to adjust the font size on that screen/device.
Then find the proper CSS code selector using the Chrome browser Developer Toolbar
To learn more about custom CSS. You can start with this tutorial
Hope it helps,
Cheers!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.