How to change Summary Block Title Font

You can use this CSS code to change summary block title font on Squarespace.
All Summary Blocks

/* summary title font */
.summary-title-link {
    font-family: monospace;
}

Summary Blocks on One Page

First, you need to use this tool to find the Page ID. In my example, it is:

  • #collection-6677756d03a4f15ba27ce9d8

Use this code to Custom CSS box

#collection-6677756d03a4f15ba27ce9d8 .summary-title-link {
    font-family: monospace;
}

Specific Summary Block

First, use above tool to find the Summary Block ID. In my example, we will have:

Use this code to Custom CSS box

#block-yui_3_17_2_1_1711638043384_28465 .summary-title-link {
    font-family: monospace;
}