How to style bold text in Squarespace list section descriptions
If you're using a Simple List Section in Squarespace and want to customize the appearance of bold text within description boxes, you can achieve this using a bit of CSS.
The following code targets bolded text—typically created with <strong> or <b> tags—in the description boxes of your simple list layout. You can adjust the font, color, and size to match your website’s style:
Step 1: Add custom CSS in Squarespace
Go to Design > Custom CSS in your Squarespace site editor.
Paste the following CSS into the editor
Save your changes.
.user-items-list-simple .list-item-content__description strong,
.user-items-list-simple .list-item-content__description b {
font-family: YOUR-FONT-NAME !important; /* Custom font */
color: #ff6600 !important; /* Custom color */
font-size: 1.2em !important; /* Custom size */
}
What this code does:
Targets Bold Text: The selectors
.user-items-list-simple .list-item-content__description strongand.user-items-list-simple .list-item-content__description bensure the styles apply only to bolded text in the simple list description boxes.Customizes Appearance: The
font-family,color, andfont-sizeproperties allow you to define a unique look for bolded text, like changing its font to"Courier New", coloring it orange, or resizing it.