Login
Register
Home
Categories
Blogging
WordPress
Affiliate Marketing
Health & Fitness
SEO
Keyword Research
Google Adsense
Travel
Free SEO Tools
New
Blog Directory
Community
Explore
Free Keyword Search
Reward Program
Earn ₹
Guest Posting List
Marketplace
Resources
Beginners Guide
Glossary A-Z
Video Tutorials
Guide & Reviews
Akshat Gupta
Last updated on August 30th, 2021
how to change font size in wordpress
Like (1)
Comments (1)
Leave a Reply
To leave a comment, please
Login
or
Register
Comments (1)
Selected
Akshat Gupta
1 year ago
Go to your WordPress dashboard, then click on Appearance >> Customize >> Additional CSS.
Now add your CSS code in the Additional CSS box.
body {
font-size: 16px;
}
Note: Here I have set '16px' for font size, you can choose a different font size.
If you want to change the font size of a specific headings tags, then add the below code in the Additional CSS box.
h1, h2, h3, h4, h5, h6 {
font-size:32px;
}
To change the font size of a paragraph:
p {
font-size: 25px;
}
Like (0)
Reply
Now add your CSS code in the Additional CSS box.
body {
font-size: 16px;
}
Note: Here I have set '16px' for font size, you can choose a different font size.
If you want to change the font size of a specific headings tags, then add the below code in the Additional CSS box.
h1, h2, h3, h4, h5, h6 {
font-size:32px;
}
To change the font size of a paragraph:
p {
font-size: 25px;
}