(Squarespace/CSS) Product Arrows Background

Use this code to Custom CSS box

/* Product arrows background */
button.product-item-gallery-carousel-control {
    background-color: #fff !important;
    justify-content: center !important;
}
.ProductItem-gallery-carousel-controls .product-item-gallery-carousel-control.ProductItem-gallery-next:after {
    margin-left: 0 !important;
}
.ProductItem-gallery-carousel-controls .product-item-gallery-carousel-control.ProductItem-gallery-prev:after {
    margin-right: 0 !important;
}

2 Likes

Update code

button.product-item-gallery-carousel-control {
    background-color: #f1f !important;
    width: 35px !important;
    min-width: unset !important;
    min-height: unset !important;
    align-items: center;
    justify-content: center;
}
button.product-item-gallery-carousel-control.ProductItem-gallery-prev:after {
    position: relative;
    left: 5px;
}
button.product-item-gallery-carousel-control.ProductItem-gallery-next:after {
    position: relative;
    right: 5px;
}