(Squarespace) Increase Carousel block height on Mobile

To increase Carousel block height on Mobile, you can

#1. First, find Carousel ID. In my example, it is: #block-yui_3_17_2_1_1739623964358_24522

#2. Use this code to Custom CSS box.
If code doesn’t work, you can comment below, message or email me.

@media screen and (max-width:767px) {
    #block-yui_3_17_2_1_1739623964358_24522 .sqs-intrinsic {
        padding-bottom: 80% !important;
    }
}

1 Like