(Squarespace) Different paragraph Size on Same section

Suppose you have 2 Text Blocks with Paragraph. You need to set different sizes on these paragraphs.

First, find ID of 2 Blocks.

In my example, we will have:

  • First Text Block: #block-yui_3_17_2_1_1739950653718_1742
  • Second Text Block: #block-6ef47e4ef896c101c935

Next, use this code to Custom CSS box.
If code doesn’t work, you can comment below, message or send me an email.

#block-yui_3_17_2_1_1739950653718_1742 p {
font-size: 30px !important;
}
#block-6ef47e4ef896c101c935 p {
font-size: 50px !important;
}

Result

1 Like