(Squarespace) How to add a border around Shape

To add a border around Shape Block, like this.

You can set Stroke, by choose this option.

If you want to set same border to all Shape with CSS code, you can use CSS code like this.

div.sqs-shape.sqs-shape-rectangle {
  border: 3px solid red !important;
}

1 Like