WPBeginner

Beginner's Guide for WordPress

  • Blog
    • Beginners Guide
    • News
    • Opinion
    • Showcase
    • Themes
    • Tutorials
    • WordPress Plugins
  • Start Here
    • How to Start a Blog
    • Create a Website
    • Start an Online Store
    • Best Website Builder
    • Email Marketing
    • WordPress Hosting
    • Business Name Ideas
  • Deals
    • Bluehost Coupon
    • SiteGround Coupon
    • WP Engine Coupon
    • HostGator Coupon
    • Domain.com Coupon
    • Constant Contact
    • View All Deals »
  • Glossary
  • Videos
  • Products
X
☰
Beginner's Guide for WordPress / Start your WordPress Blog in minutes
Choosing the Best
WordPress Hosting
How to Easily
Install WordPress
Recommended
WordPress Plugins
View all Guides

WPBeginner» Blog» Beginners Guide» How to Easily Change the Font Size in WordPress

How to Easily Change the Font Size in WordPress

Last updated on May 12th, 2020 by Editorial Staff
557 Shares
Share
Tweet
Share
Pin
Free WordPress Video Tutorials on YouTube by WPBeginner
How to Easily Change the Font Size in WordPress

Do you want to change the font size in your WordPress posts or pages?

Sometimes, you may want to make a line or a paragraph larger, or you might want to increase the font size of your entire page content.

In this article, we’ll show you how to easily change the font size in WordPress. You’ll learn not only how to change font size in your WordPress posts, but also how to do it across your website.

Change font size in WordPress

Video Tutorial

Subscribe to WPBeginner

If you’d prefer written instructions, just keep reading.

Method 1: Using Paragraph Headings

It takes your visitors just a couple of seconds to decide whether they want to stay or leave your website. This gives you very little time to convince them to stay on your website.

Using Headings in your content is a great way to grab user attention.

They allow you to break your posts and pages into sections using different headings (often called “subheadings”).

Headings are great for SEO as well. Search engines give proper headings more weight than normal paragraph text.

How to add a heading in the default WordPress block editor

You can add a heading to your posts or pages by simply adding the ‘Heading’ block. You can search for it or find it in the ‘Common Blocks’ section in the WordPress block editor.

Adding a heading block in Gutenberg

The block will default to Heading 2. Normally, it makes sense to stick with Heading 2 for your subheadings. If you want to change this, then you can simply click on the ‘H2’ drop-down to select a different size.

Selecting your Heading size in the block editor

Alternatively, you can change this in the block settings on the right-hand side of the screen. You can also change the heading’s color there as well.

How to add a heading in the older Classic Editor

If you are still using the older classic editor in WordPress, then you can add headings using the ‘Paragraph’ drop-down.

Just highlight the text that you want to turn into a heading, click the ‘Paragraph’ drop-down, and select your heading size.

Creating a heading by clicking on the Paragraph drop-down in the classic editor

The sizes and colors of the different Heading styles are controlled by your theme’s stylesheet (style.css).

If you’re using a premium WordPress theme, then you may have the option to change these settings under Appearance » Customize.

Using subheadings in your articles makes it easier for readers to follow what you’re telling them. At the same time, it also makes your WordPress posts SEO friendly.

Method 2: Changing the Size of the Text in the Block Editor

What if you want to have a paragraph or even your whole post in a larger font? You can do this really easily using the default WordPress block editor.

Just click on any paragraph block, then select the font size under ‘Text Settings’ on the right-hand side.

Changing the text size of a paragraph block

You can select from the drop-down, which covers Small, Normal, Medium, Large, and Huge. If you change your mind, then just click the ‘Reset’ button to set your paragraph back to the default text.

There’s also a ‘Custom’ option where you can simply type in the pixel size that you’d like. If you want, you can also set a large Drop Cap to appear at the start of your paragraph.

These options aren’t available in the older classic editor for WordPress. If you want to use them, then think about making the switch. Our tutorial on how to use the new WordPress block editor will help you.

If you are determined to stick with the classic editor, then this next option is for you.

Method 3: Change Font Size Using The TinyMCE Advanced Plugin

TinyMCE Advanced is a WordPress plugin that gives you more control over font sizes and text formatting, as well as a range of other features.

This is particularly useful with the older classic editor, but it also works with the block editor. It adds a new block called “Classic Paragraph” that has all the TinyMCE controls.

To use it, you’ll first need to install and activate the TinyMCE Advanced plugin. If you’re not sure how to do that, check out our step by step guide on how to install a WordPress plugin.

Next, go to Settings » TinyMCE Advanced to configure the editor settings. This is where you can set up the buttons you want to use in the TinyMCE Advanced toolbar.

If you’re using it with the Classic editor, then you should see that TinyMCE has the ‘Font Size’ drop-down enabled by default in the second row of icons.

You can move it to the first row by dragging it upwards if you want.

The font sizes drop-down button on the TinyMCE Advanced menu for the classic editor

If you’re using the block editor, then you’ll need to scroll down the screen and add the Font Sizes drop-down to the toolbar by dragging and dropping it:

Adding the font sizes button to the TinyMCE Advanced block toolbar

Make sure you click ‘Save Changes’ at the bottom of the screen.

To see the button in action, create a new post or edit an existing one.

In the block editor, you’ll now have the option to add a ‘Classic Paragraph’ block. It will have the TinyMCE Advanced controls, like this:

The Classic Paragraph block in the block editor, added by the TinyMCE Advanced plugin

In the classic editor, you’ll see the TinyMCE Advanced toolbars with a font size drop-down:

Changing the font size using the TinyMCE Advanced editor

You can select any font size from the drop-down.

Note: this doesn’t give you as many options as the WordPress block editor, and you can’t type in your own font size.

Method 4: Change Site-Wide Font Size Using CSS

If you are changing font sizes every time you edit a post, then you may want to make it easier by changing it permanently in your theme.

The good news is that you can change the default paragraph size across your whole site. The best way to do this is by using the Theme Customizer under Appearance » Customize.

Some WordPress themes may come with an option for you to change the font size. If you can find this option, then you can use it without writing CSS code.

However, if your theme does not have that feature, then you can add custom CSS to add your own font size rules.

Simply click on the ‘Additional CSS’ option in the theme customizer. This is where you can store all your custom CSS code.

Using the Customizer to add CSS code to your site

Now under the additional CSS text box, simply add your CSS code. In this example, we are changing the font size to ’16px’, you can choose a different font size.

p { 
font-size:16px; 
} 

You’ll immediately see the changes on the preview on the right-hand side of the screen. If you’re happy with the font size, click the ‘Publish’ button at the top of your screen to make it live.

Note: Your custom CSS will only be applied to the theme you’re using. If you later choose to switch to a different WordPress theme, you’ll need to copy and paste it into the Customizer again.

The above code only applies to paragraph text. What if you wanted to change the font size of all h2 sub-headings?

Simply modify the above code to target the h2 element in your theme like this:

h2 { 
font-size:32px; 
} 

You can do the same thing with other headings as well by simply changing h2 to h3, h4, or h5.

We hope this article helped you learn how to easily change the font size in WordPress. You may also want to see our guide on how to use custom fonts in WordPress or our list of the best drag & drop WordPress page builder plugins.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

557 Shares
Share
Tweet
Share
Pin
Popular on WPBeginner Right Now!
  • Google Analytics in WordPress

    How to Install Google Analytics in WordPress for Beginners

  • How to Fix the Error Establishing a Database Connection in WordPress

    How to Fix the Error Establishing a Database Connection in WordPress

  • How to Properly Move Your Blog from WordPress.com to WordPress.org

  • How to Start Your Own Podcast (Step by Step)

    How to Start Your Own Podcast (Step by Step)

About the Editorial Staff

Editorial Staff at WPBeginner is a team of WordPress experts led by Syed Balkhi. Trusted by over 1.3 million readers worldwide.

The Ultimate WordPress Toolkit

171 Comments

Leave a Reply
  1. sarah says:
    Mar 14, 2021 at 8:13 am

    Hi there,

    thanks for this tutorial. I was trying to do the fourth method and wanted to change my H2 size. I copy and pasted the code into my custom CSS but when I change the px value nothing happens. The Size doesn’t change. Very annoying :O

    Reply
    • WPBeginner Support says:
      Mar 15, 2021 at 1:31 pm

      You may need to check with your theme’s support in case they are overriding your CSS

      Reply
  2. Mike says:
    Feb 22, 2021 at 1:55 pm

    Pls which google front wpbeginner is using

    Reply
    • WPBeginner Support says:
      Feb 23, 2021 at 9:00 am

      For the moment, we are using the Proxima Nova font.

      Reply
  3. Scott McKinstry says:
    Nov 27, 2020 at 7:43 pm

    Thanks for the help!

    Reply
    • WPBeginner Support says:
      Nov 30, 2020 at 10:45 am

      You’re welcome!

      Reply
  4. David Johnson says:
    Nov 25, 2020 at 7:48 pm

    In the new wordpress block editor, regardless of whether I give it a H1 or H4 heading, it doesn’t change the size of the font at all. Sure, in the editor the size changes, but when I publish, there is no size change for what the public sees.

    Reply
    • WPBeginner Support says:
      Nov 27, 2020 at 10:02 am

      Your theme may have styling for your headings that make the text look the same. You would either want to edit it with CSS or reach out to your theme’s support.

      Reply
  5. Vishal Aksh says:
    Aug 10, 2020 at 8:08 am

    Well thanks for this valuable information.

    Reply
    • WPBeginner Support says:
      Aug 11, 2020 at 10:28 am

      You’re welcome :)

      Reply
  6. Jran says:
    Aug 8, 2020 at 4:53 pm

    Hi, is there a way to set/change defaults with the Classic paragraph editor? So for example if you wanted each block of text to have size 14 in Book Antiqua, is there a way to keep as a preset instead of having to manually change every block or even line?

    Reply
    • WPBeginner Support says:
      Aug 10, 2020 at 2:57 pm

      For what you’re wanting, you would likely need to use the CSS method from this article to set the text how you’re wanting.

      Reply
  7. Leslie Limardo says:
    Jul 18, 2020 at 1:24 pm

    Hi there,
    I have the tiny mce advanced plugin. I added the font size to the selection but when i go to my pages, but doesn’t appear and I’ve clicked through all the options and don’t see where else to add it.

    Reply
    • WPBeginner Support says:
      Jul 22, 2020 at 3:21 pm

      You will likely need to reach out to your specific theme’s support and they should be able to assist with what could be preventing the changes.

      Reply
  8. Yoshiko says:
    Jun 15, 2020 at 10:51 pm

    Hello. Thanks for the posting. I have one question. If I want to enlarge a couple of words in one block, how can I do it?

    Reply
    • WPBeginner Support says:
      Jun 16, 2020 at 9:05 am

      You would likely need to edit the paragraph using HTML to manually add the text changes to specific sections.

      Reply
      • Yoshiko says:
        Jun 16, 2020 at 9:49 am

        I see. I was hoping that there were other options to do so. I will give it a try. Thank you!

        Reply
  9. James says:
    Jun 9, 2020 at 12:12 pm

    Thanks for this article. It is very useful and every point is understandable.

    Reply
    • WPBeginner Support says:
      Jun 10, 2020 at 8:44 am

      Glad you found the article helpful :)

      Reply
  10. Vaibhavi says:
    Jun 9, 2020 at 11:19 am

    Thank you so much for this! I was afraid I’d have to buy a premium theme to make such small changes. This helped tons! :)

    Reply
    • WPBeginner Support says:
      Jun 10, 2020 at 8:44 am

      Glad our guide was helpful :)

      Reply
  11. tonyalee says:
    Jun 8, 2020 at 10:36 pm

    This was so helpful! The font on my site was so small. Quick question, is there a way to do this for lists in the block editor? I noticed they are still the same size after adding the code to my css editor.

    Reply
    • WPBeginner Support says:
      Jun 9, 2020 at 9:27 am

      You would want to use inspect element to target the text in your lists. We have a guide on how to use it below:
      https://www.wpbeginner.com/wp-tutorials/basics-of-inspect-element-with-your-wordpress-site

      Reply
  12. Minhas Qureshi says:
    May 15, 2020 at 8:41 am

    Useful Information

    Reply
    • WPBeginner Support says:
      May 15, 2020 at 8:56 am

      Thank you :)

      Reply
  13. mousam says:
    May 12, 2020 at 12:16 pm

    Thank you for this post. I use astra theme and have implemented the custom css method for paragraph.

    Thank you again

    Reply
    • WPBeginner Support says:
      May 13, 2020 at 8:41 am

      Glad our post was able to help you :)

      Reply
  14. M Santimi says:
    May 12, 2020 at 9:35 am

    Thanks for being a reliable source of factual information pertaining to wordpress.

    Would appreciate an easy way to change light grey fonts to a more easily readable black.

    Reply
    • WPBeginner Support says:
      May 12, 2020 at 11:03 am

      For that, you would normally use CSS to change the color. For how to find the CSS to change you would want to take a look at our article below on using inspect element:
      https://www.wpbeginner.com/wp-tutorials/basics-of-inspect-element-with-your-wordpress-site/

      Reply
  15. Abdullah says:
    Apr 20, 2020 at 3:11 am

    thank you ..
    it was very useful informations

    Reply
    • WPBeginner Support says:
      Apr 21, 2020 at 1:33 pm

      You’re welcome :)

      Reply
  16. Maria says:
    Mar 28, 2020 at 4:16 pm

    How can I increase the font size of my blog tittle?

    Reply
    • WPBeginner Support says:
      Mar 30, 2020 at 9:12 am

      You would use similar CSS to this but to target your blog title you would want to use inspect element which we have a guide on how to use here:
      https://www.wpbeginner.com/wp-tutorials/basics-of-inspect-element-with-your-wordpress-site/

      Reply
      • MARIA GLORIA R ADAN says:
        Apr 5, 2020 at 11:42 pm

        Thank you so much!

        Reply
  17. william says:
    Mar 23, 2020 at 7:28 pm

    This site has saved my life numerous times. thank you.

    Reply
    • WPBeginner Support says:
      Mar 24, 2020 at 8:53 am

      You’re welcome, glad our guides have been helpful to you :)

      Reply
  18. Susan Narayan says:
    Jan 26, 2020 at 10:51 am

    Nice video, but I was looking for a way to decrease the size of the font in my post title. Any resources you could direct me to?
    Thank you.

    Reply
    • WPBeginner Support says:
      Jan 27, 2020 at 11:55 am

      You would normally need to use the CSS method for that and for finding what CSS is needed, you would want to take a look at our guide on inspect element here:
      https://www.wpbeginner.com/wp-tutorials/basics-of-inspect-element-with-your-wordpress-site/

      Reply
  19. Gulzar says:
    Nov 18, 2019 at 12:19 pm

    I was actually looking for something like TINY MCE, thanks for the help.
    You are doing a great job, keep it up!

    Reply
    • WPBeginner Support says:
      Nov 19, 2019 at 10:09 am

      Glad our recommendations could help :)

      Reply
  20. mod says:
    Aug 23, 2019 at 11:17 am

    Hi, I want to change the default wordpress font size. I tried to add it in additional css. But it did not work. Please suggest me what to do. Thanks

    Reply
    • WPBeginner Support says:
      Aug 26, 2019 at 10:14 am

      Your theme may be overriding the style you’re adding. You either check with your theme’s support or use inspect element to see what CSS you need to set for the font size: https://www.wpbeginner.com/wp-tutorials/basics-of-inspect-element-with-your-wordpress-site/

      Reply
  21. Ryan G. Cullen says:
    Aug 20, 2019 at 6:54 pm

    I want to add a tiny text at the right size of image like a source link refer to image from…

    Help me how can I do this?

    Reply
    • WPBeginner Support says:
      Aug 21, 2019 at 9:40 am

      For an image credit, you would want to take a look at our article here: https://www.wpbeginner.com/beginners-guide/how-to-add-image-credits-in-wordpress-step-by-step/

      Reply
  22. Habib Khan says:
    Jul 21, 2019 at 8:10 am

    Hey,
    I was confused about the size of font. What is the size of font you are using in wpbeginner

    Either way, Your articles are best keep it up!

    Cheers,
    Habib

    Reply
    • WPBeginner Support says:
      Jul 22, 2019 at 1:02 pm

      For the moment it is 16px, for finding out information like this on sites you may want to take a look at our inspect element guide here: https://www.wpbeginner.com/wp-tutorials/basics-of-inspect-element-with-your-wordpress-site/

      Reply
  23. Elise says:
    Jun 27, 2019 at 8:18 pm

    Hello!
    I tried to change the font sizes (body+headings) in CSS but wasn’t successful;

    Something went wrong. Your change may not have been saved. Please try again. There is also a chance that you may need to manually fix and upload the file over FTP.

    What should I do? Your comments would be greatly appreciated ☺️

    Reply
    • WPBeginner Support says:
      Jul 1, 2019 at 11:59 am

      It would depend on where you are adding the code, are you under Appearance>Customize>Additional CSS?

      Reply
  24. Rahul Raj says:
    Jun 23, 2019 at 5:30 am

    Want to change the font size of titles of all my posts and pages. Please help.

    Reply
    • WPBeginner Support says:
      Jun 25, 2019 at 10:56 am

      For finding what to target on your specific theme, you would want to take a look at our guide on using inspect element: https://www.wpbeginner.com/wp-tutorials/basics-of-inspect-element-with-your-wordpress-site/

      Reply
  25. Victor says:
    May 28, 2019 at 2:00 pm

    With the new version of WordPress, this does not work. I am not sure why the article lists as 4/19 because some comments are a lot older.

    Reply
    • WPBeginner Support says:
      May 29, 2019 at 9:49 am

      The date updates even if we edit out typos, these methods should work with the classic editor and for the block editor, there is the option to change the font size in the paragraph’s block settings.

      Reply
  26. Kathie says:
    Feb 27, 2019 at 11:39 am

    Simple, straight forward and easy to follow. Thank you <3

    Reply
    • WPBeginner Support says:
      Feb 27, 2019 at 1:20 pm

      You’re welcome :)

      Reply
  27. Radoslav says:
    Feb 21, 2019 at 2:28 am

    My theme is Sydney The articles’ titles are too big in mobile. Is there a way to change them without coding and without plugins. I use Elementor.

    Reply
    • WPBeginner Support says:
      Feb 21, 2019 at 10:39 am

      If you’re using Elementor, then it should have options to change the font size in the design options for what you’re using to display the post. If you’re not customizing your layout with Elementor it would require CSS or reaching out to the theme’s support.

      Reply
  28. john felicetti says:
    Feb 1, 2019 at 4:44 pm

    I want to change the site title font on my self-hosted wordpress site and cannot get a simple answer as to how to do that. can you help?

    Reply
    • WPBeginner Support says:
      Feb 4, 2019 at 2:04 pm

      To do that, it would normally require custom CSS or a tool such as CSS Hero. You may want to take a look at: https://www.wpbeginner.com/wp-themes/how-to-add-custom-fonts-in-wordpress/

      Reply
  29. Jim says:
    Jan 30, 2019 at 3:12 pm

    In the video, at 28 seconds, the editor is shown. There are all kinds of tools in the button bar.

    My dashboard doesn’t have that editor. There are, in fact, no buttons at all, just a text box with giant text in it.

    So, how do I get access to a real editor like you have?

    Jim

    Reply
    • WPBeginner Support says:
      Jan 31, 2019 at 10:39 am

      WordPress added Gutenberg/Block editor after this video was made, if you wanted to use the editor in the current video then you would use the plugin in: https://www.wpbeginner.com/plugins/how-to-disable-gutenberg-and-keep-the-classic-editor-in-wordpress/

      Reply
      • Jim Gersetich says:
        Feb 22, 2019 at 1:25 pm

        Thank you!

        Reply
  30. Nroy says:
    Dec 1, 2018 at 9:36 pm

    I want to make text h1 but the text size should be as paragraph. Is this possible?

    Reply
    • WPBeginner Support says:
      Dec 3, 2018 at 10:23 pm

      Hi Nroy,

      Yes it is possible if you are using TinyMCE advanced plugin you can select a heading and change its font size.

      Reply
  31. Keith Brian Johnson says:
    Oct 5, 2018 at 11:19 pm

    What if you want to make the title smaller but the tagline bigger? Being able to dictate fonts and sizes of text in posts is great, but how about the title and tagline?

    Reply
  32. Kimya says:
    Jul 23, 2018 at 11:49 am

    Love these tutorials. This tutorial helped my font look uniform on my website. Thanks again!

    Reply
  33. John Jones says:
    Jun 8, 2018 at 6:23 pm

    I installed this and it doesn’t show in the editor? What am I missing? Thanks.

    Reply
    • Darlene says:
      Nov 13, 2018 at 11:14 am

      My old WP theme appears to have coded Heading 1 in 12 pt font like normal text. I manually change each heading to 14 pt. But then the coding doesn’t say “h1” which Google robots look for. If I use your plugin(which is cool) and change heading font sizes, will they still be labeled h1, h2, h3? Also, I don’t want to change fonts on pages already customized. Can I apply the plugin to blog posts only? Thanks.

      Reply
      • WPBeginner Support says:
        Nov 13, 2018 at 8:08 pm

        Hi Darlene,

        You can give plugin a try. However, if your headings are hard coded in the theme then this may not help you change those headings.

        Reply
  34. Danny says:
    May 22, 2018 at 2:30 am

    The use of px (or pt) in this Guide is not recommendable, because on small Screens like on Smartphones the font size is very small. Its better to use em.

    Reply
    • Fred Lalonde says:
      Jun 5, 2018 at 8:38 am

      How do I change the font size of menu items?

      Reply
  35. Tuan says:
    Mar 25, 2018 at 11:23 pm

    hi, my fontsize is % not pt, how can i change it back to pt?

    Reply
  36. pradeep says:
    Feb 21, 2018 at 11:36 am

    fantastic… i just did it… thank a lot

    Reply
  37. Andrew Oliver says:
    Jan 20, 2018 at 12:46 pm

    I want to enlarge Excel spreadsheets in my posts. I snip them and upload them via Add Media. But I don’t see a way to increase the font size of these uploads.
    So…. I increased the font size in my spreadsheet and then snipped and uploaded the spreadsheet with the larger font – but it still appears as the original size.
    Is there any way to increase the font size in the post as it currently is too small to be easily read (there are several columns in my spreadsheet)?

    Reply
    • WPBeginner Support says:
      Jan 22, 2018 at 4:11 am

      Hi Andrew,

      We are not sure we fully understand your question. If you are uploading your spreadsheet as an image file, then its dimensions will depend on your post container. Let’s suppose your post container or content area is 600px wide, then your theme will automatically shrink the image to fit in the container. You can also try selecting full size image before inserting it into your post.

      Reply
      • Mylene says:
        Apr 25, 2018 at 8:22 am

        Hi, thanks for sharing, very useful indeed. Is there a way to also adjust the font size of the title, or maybe better done in CSS (and if so, how)? thanks again!

        Reply
  38. jackson says:
    Dec 2, 2017 at 10:33 am

    I use tinymcv plugin to change the font size. but when i press enter and go to the next line the font size will be default value which is 9pt. How can I change the default value to 12pt.

    Reply
  39. jitendra says:
    Nov 8, 2017 at 4:20 am

    Thanks for the post. But I want to know more… I want to make the bigger size of some special word in a sentence without any plugin. Special words in a sentence. e.g. we are doing in MS word. Can it possible? Hope your answer.

    Reply
    • Pragati kumar sheel says:
      Jan 12, 2018 at 8:52 am

      Hi jitendra to do that open your text editor.

      and type “font-size: 120%;”

      For example:

       Your text

      You can change the font % by any value. I hope it will help you.

      Reply
  40. Brady says:
    Sep 20, 2017 at 2:27 pm

    Thanks for the video and info, but I can’t change single lines of font sizes when writing a blog post.
    In Visual Editor when I select “Heading 1” or “Heading 2” it changes the entire entry, but I only need to change that one line. I have to double space to make that happen without changing everything else. But then the spacing is wrong because it doesn’t need to be double spaced. Please help. And is there any other way to change font by font size (11, 12, 14, etc) instead of the preselected “Heading 1” “Heading 2”, etc.? Because TinyMCE didn’t work for me. Thanks!

    Reply
  41. veonescu ghe says:
    Aug 25, 2017 at 6:16 am

    What are you talking about, WordPress? Just make a simple option to increase the font size! Not widgets that don’t work with some themes or they work for one paragraph etc. Because the Paragraph tab give either too small a font, or weirdly formatted, hard to read. Why is it so hard to just add an option to increase the size wit a button?…

    Reply
    • Theresa says:
      Dec 15, 2017 at 7:47 am

      Not kidding. This should not be this difficult. Every time I hit return it reverts back to the original size. Do I really have to select the font size for every single paragraph?

      Reply
  42. salman qureshi says:
    Aug 22, 2017 at 10:28 am

    TinyMce advance has conflict with visual composer,

    Reply
  43. Liv Ramirez says:
    Aug 20, 2017 at 7:31 am

    Hi. Thank you. I am learning how to edit font size, font type and spacing. This is a big help.

    Reply
  44. Anna says:
    Aug 20, 2017 at 5:09 am

    Hi, first of all thank you for all the knowlege available on this site. It’s great !
    I followed instructions from this article, but I still can’t change to font size in headers. I installed both TinyMCE and Google fonts. I am able to change font styles but not the size.

    Thank you,
    Anna

    Reply
  45. Chidi Anslem says:
    May 16, 2017 at 12:31 am

    Thanks for this great post. It worked for me. I can now edit font family, change font size, underline text, highlight text and even insert table. Thanks.

    Reply
  46. Philip says:
    May 13, 2017 at 3:26 pm

    I just updated my site and theme. I am having a weird issue of my woocommerce product titles having bigger fonts than they were before updates. i have tried custom css from other forums and wondering if maybe I can get an option here.. Kindly advise.

    Reply
    • WPBeginner Support says:
      May 13, 2017 at 6:15 pm

      Hey Philip,

      Have you tested your website with different browsers and devices to make sure that it is not an issue with your browser settings. After that try reaching out to your theme developer, they will be able to tell you whats changed in the new version or if there is a better way to solve this issue.

      Reply
  47. Thomas says:
    Apr 6, 2017 at 12:19 am

    Is there a simple way to set a new default font size in WP?
    I have been manually setting to a larger font to improve readability but the theme doesn’t like it and tends to revert back to default whenever I press ENTER and also the paragraph headings don’t work when I’m inside text with the new size.
    I’d have thought this would have been one of the first features to include in WP themes. The current default font is very small and I find it hard to read.
    Thanks, Thomas.

    Reply
    • WPBeginner Support says:
      Apr 6, 2017 at 2:35 am

      Hi Thomas,

      You can go to Appearance » Customize and click on the Additional CSS tab.

      Then in the CSS box on the left panel, add this CSS at the end of whatever text/code you see there.

      body { 
      font-size:16px; 
      }
      

      You will see font size change in the live preview. Don’t forget to click on the ‘Save & Publish’ button on top.

      Reply
      • Marcia says:
        May 8, 2017 at 10:51 am

        This is so ridiculous and why I’m having a hard time with WP. It should be just as Word. You highlight the text and select from 100’s of fonts. Why does WP make this so difficult for the lay person? Can this not be changed?

        Reply
  48. Kevin says:
    Mar 29, 2017 at 9:37 am

    Perfect! Thank you.

    Reply
  49. Will says:
    Feb 27, 2017 at 4:51 pm

    How do you change the font size of the title….I am not talking about content I mean the page title located at the very top of a page..

    Reply
  50. Jayesh Parmar says:
    Feb 25, 2017 at 12:17 pm

    My website I am unable to write post using advance tinymce. I have already installed the advance tinymce plug in , but it works for adding job only. It doesn’t work for post writing. I have tried a lot to change the same. but it does not work,, How to change font now

    Reply
« 1 2 3

Leave a Reply Cancel reply

Thanks for choosing to leave a comment. Please keep in mind that all comments are moderated according to our comment policy, and your email address will NOT be published. Please Do NOT use keywords in the name field. Let's have a personal and meaningful conversation.

Over 1,320,000+ Readers

Get fresh content from WPBeginner

Featured WordPress Plugin
OptinMonster
OptinMonster
Convert website visitors into email subscribers. Learn More »
How to Start a Blog How to Start a Blog
I need help with ...
Starting a
Blog
WordPress
Performance
WordPress
Security
WordPress
SEO
WordPress
Errors
Building an
Online Store
Useful WordPress Guides
    • 7 Best WordPress Backup Plugins Compared (Pros and Cons)
    • How to Fix the Error Establishing a Database Connection in WordPress
    • Why You Need a CDN for your WordPress Blog? [Infographic]
    • 30 Legit Ways to Make Money Online Blogging with WordPress
    • Self Hosted WordPress.org vs. Free WordPress.com [Infograph]
    • Free Recording: WordPress Workshop for Beginners
    • 24 Must Have WordPress Plugins for Business Websites
    • How to Properly Move Your Blog from WordPress.com to WordPress.org
    • 5 Best Contact Form Plugins for WordPress Compared
    • Which is the Best WordPress Popup Plugin? (Comparison)
    • Best WooCommerce Hosting in 2021 (Comparison)
    • How to Fix the Internal Server Error in WordPress
    • How to Install WordPress - Complete WordPress Installation Tutorial
    • Why You Should Start Building an Email List Right Away
    • How to Properly Move WordPress to a New Domain Without Losing SEO
    • How to Choose the Best WordPress Hosting for Your Website
    • How to Choose the Best Blogging Platform (Comparison)
    • WordPress Tutorials - 200+ Step by Step WordPress Tutorials
    • 5 Best WordPress Ecommerce Plugins Compared
    • 5 Best WordPress Membership Plugins (Compared)
    • 7 Best Email Marketing Services for Small Business (2021)
    • How to Choose the Best Domain Registrar (Compared)
    • The Truth About Shared WordPress Web Hosting
    • When Do You Really Need Managed WordPress Hosting?
    • 5 Best Drag and Drop WordPress Page Builders Compared
    • How to Switch from Blogger to WordPress without Losing Google Rankings
    • How to Properly Switch From Wix to WordPress (Step by Step)
    • How to Properly Move from Weebly to WordPress (Step by Step)
    • Do You Really Need a VPS? Best WordPress VPS Hosting Compared
    • How to Properly Move from Squarespace to WordPress
    • How to Register a Domain Name (+ tip to get it for FREE)
    • HostGator Review - An Honest Look at Speed & Uptime (2021)
    • SiteGround Reviews from 4464 Users & Our Experts (2021)
    • Bluehost Review from Real Users + Performance Stats (2021)
    • How Much Does It Really Cost to Build a WordPress Website?
    • How to Create an Email Newsletter the RIGHT WAY (Step by Step)
    • Free Business Name Generator (A.I Powered)
    • How to Create a Free Business Email Address in 5 Minutes (Step by Step)
    • How to Install Google Analytics in WordPress for Beginners
    • How to Move WordPress to a New Host or Server With No Downtime
    • Why is WordPress Free? What are the Costs? What is the Catch?
    • How to Make a Website in 2021 – Step by Step Guide
Deals & Coupons (view all)
CometChat
CometChat Coupon
Get 30% OFF on CometChat WordPress user chat and conference call plugin.
EWWW Image Optimizer
EWWW Image Optimizer Coupon
Get 15% OFF on EWWW Image Optimizer WordPress plugin for image resizing.
Featured In
About WPBeginner®

WPBeginner is a free WordPress resource site for Beginners. WPBeginner was founded in July 2009 by Syed Balkhi. The main goal of this site is to provide quality tips, tricks, hacks, and other WordPress resources that allows WordPress beginners to improve their site(s).

Join our team: We are Hiring!

Site Links
  • About Us
  • Contact Us
  • FTC Disclosure
  • Privacy Policy
  • Terms of Service
  • Free Blog Setup
  • Free Business Tools
  • Growth Fund
Our Sites
  • OptinMonster
  • MonsterInsights
  • WPForms
  • SeedProd
  • Nameboy
  • RafflePress
  • Smash Balloon
  • AIOSEO

Copyright © 2009 - 2021 WPBeginner LLC. All Rights Reserved. WPBeginner® is a registered trademark.

Managed by Awesome Motive | WordPress hosting by SiteGround | WordPress Security by Sucuri.