How to Change Default Blogger Post Font Size For Individual Page?

It is a Webmaster forum to discuss website promotion, CMS management, Search Engine discussions, AdSense, etc.
Post Reply
laxmi
Standard User
Posts: 13
Joined: 10 Oct 2023, 14:08

How to Change Default Blogger Post Font Size For Individual Page?

Post by laxmi »

For those who are using Blogspot to create and publish blogs often wonder how to change the default Blogger post text font size.

Many Blogspot bloggers use the default post font size set by the blog theme they have. Many Blogspot themes have a smaller font size for individual posts, and it is difficult to read.

In this post, we share two different methods to change the default font sizes in every Blogspot blog theme.

One of the methods to change the blog post content size is to create a div for each blog post. The second method is to specify a font size in the Blogger Theme Designer.
laxmi
Standard User
Posts: 13
Joined: 10 Oct 2023, 14:08

Re: How to Change Default Blogger Post Font Size For Individual Page?

Post by laxmi »

Create a DIV to Change the Individual Blogspot Blog Post Font Size

This method is best suited for changing the font size of individual Blogger Posts. Though it is a simple method, there is a drawback.

In this method, you have to add the DIV you created in every post manually. That is why I said, this method is best suited for individual posts.

Let me explain how to change the font size of an individual Blogspot blog post step by step.

  1. Create and add a New DIV in a Blogger Post
    1. Log into your Blogger, and click on New Post button.

      Image
    2. Click on HTML view to add a new div.
    3. Enter a new div as the screenshot provided below.
      Image

      Here the DIV name is systosys-font. You need to keep the content inside the DIV as explained below.

      Code: Select all

      <div class="systosys-font">
      
      
      Write Your Content Here
      
      </div>
  2. Add the new DIV to the Blogger CSS file
    The second step in this method is to add the newly create DIV to the Blogger theme CSS file.
    1. On the Blogger dashboard, click on Theme and click on Customize button.

      Image

      Now you are on the Blogger Theme Designer Page. You can add your customized CSS on this page.
    2. Click on the Advanced button, and click on Add CSS.

      Image
    3. If you do not know how to write a DIV, simply copy the code provided below and paste it on this page.

      Code: Select all

      .systosys-font {font-size:110%;}
      You can change the percentage depends on your need. 100% is the original font size provided by the Blogger theme. If you write 90 instead of 100, the Blogger post font size will show a decrease of 10%.

      Have a look at the screenshot provided below to see the CSS code implementation.

      Image

      Click on the Apply to Blog button to save the custom CSS you have entered.
To increase the Blogger individual post font size, you should increase the percentage. To decrease the default font size, you should decrease the percentage in the font-size CSS.

If you do not have any knowledge of CSS coding, it might be a little confusing for you. So, let me explain it with an example.


Consider the default font size of an individual Blogspot page is 10 pixels. When you set the font size to 100%, there will be no change.

If you set the font size as 110%, the new font size will be 11 pixels. When you set the font size to 90%, the new font size will be 9 pixels.
laxmi
Standard User
Posts: 13
Joined: 10 Oct 2023, 14:08

Re: How to Change Default Blogger Post Font Size For Individual Page?

Post by laxmi »

Change Blogspot Blog Post Font Size From the Blogger Theme Designer

It is the second method to change the font size of a Blogger blog post. However, you cannot change the individual post font size using this method.

This method changes the font size of the entire blog. Let us see how to change the font size from the Blogger Theme Designer.
  1. On the Blogger dashboard, click on Theme and click on Customize button.

    Image
  2. Click on the Advanced tab.
    Image

    You can change the font size of your blog from this window.
I believe this tutorial helped you to fix every Blogger font size-related problems.
siva
Standard User
Posts: 16
Joined: 18 Oct 2023, 15:03

Create a DIV to Change Blog Post font size

Post by siva »

I prefer to change the font size with an external DIV. It is more flexible.
Post Reply