(Squarespace) How to change Blog metadata size in Blog Post

To change Blog metadata size (date, category, author, tag) in Blog Post.

You can use this code to Custom CSS.
You can also use this free blog tool so you can customize blog easier without using code.

div.blog-item-meta-wrapper * {
    font-size: 30px !important;
}

With Tags. Use this CSS code.

div.blog-meta-item.blog-meta-item--tags * {
    font-size: 30px;
}

1 Like