Jump to content

[Share] Change Blog Title size

Recommended Posts

Posted

You can use these CSS code (Website Tools > Custom CSS) to change Blog Title size (all pages, one page, desktop only, mobile only,..).

#1. All Blog Titles

To change Blog Title Size on all blog pages, you can follow these steps.

Click Site Styles icon on top right of site.

image.png.ea56f02d2b28b34d3b9492ed4c650e07.png

At Fonts > Click Arrow icon

image.thumb.png.d4108d631c3b370d0a68db2e811c77b3.png

Click Assign Styles

image.thumb.png.abd08dde3ab94f4ad6eb814947b2fe08.png

Scroll down to these positions. You can change the title size here.

image.thumb.png.9894128b318059feec72781f94f6d67c.png

These options will change Title Size in Blog List Pages Only. With Blog Posts, you can use this to Custom CSS box

div.blog-item-title h1 {
    font-size: 30px !important;
}

image.png.b342644a0bc6f531a9f5019993976c62.png

#2. Blog Titles size on Desktop Only

Use code to Custom CSS box

@media screen and (min-width:768px) {
  h1.blog-title a, div.blog-item-title h1 {
      font-size: 30px !important;
  }
}

#3. Blog Titles size on Mobile Only

@media screen and (max-width:767px) {
  h1.blog-title a, div.blog-item-title h1 {
      font-size: 30px !important;
  }
}

#4. Blog Title Size on Specific Blog Page

First, you need to find Blog Page ID. 

In my example, it is: #collection-6677756d03a4f15ba27ce9d8

image.png.ba0c9f8e011955b7cf49c384b9d3658c.png

Next, you need to change # to dot . symbol, so new ID will be:

  • .collection-6677756d03a4f15ba27ce9d8

Next, use this CSS code

/* Blog titles size */
.collection-6677756d03a4f15ba27ce9d8 {
  h1.blog-title a, div.blog-item-title h1 {
      font-size: 30px !important;
  }
}

#4.2. Blog Titles Size on Specific Blog Page – Desktop Only

Find Blog Page ID, then use CSS code like this

@media screen and (min-width:768px) {
  .collection-6677756d03a4f15ba27ce9d8 {
      h1.blog-title a, div.blog-item-title h1 {
          font-size: 30px !important;
      }
	}
}

#4.3. Blog Titles Size on Specific Blog Page – Mobile Only

Find Blog Page ID, then use CSS code like this

@media screen and (max-width:767px) {
  .collection-6677756d03a4f15ba27ce9d8 {
    h1.blog-title a, div.blog-item-title h1 {
        font-size: 30px !important;
    }
  }
}

 

Email me if you have need any help (free, of course.). Answer within 24 hours. 
Or send to forum message

Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)

  • Replies 0
  • Views 912
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

Posted Images

Create an account or sign in to comment

You need to be a member in order to leave a comment


×
×
  • Create New...

Squarespace Webinars

Free online sessions where you’ll learn the basics and refine your Squarespace skills.

Hire a Designer

Stand out online with the help of an experienced designer or developer.