全宽方形空间产品块

full width squarespace product block

我正在努力寻找调整产品块宽度的方法。网站页面是 dachshund-crane-s64k.squarespace.com/nouvelle-page(密码是 'password')。变体的宽度和添加到购物车按钮是自动设置的,但我希望整个东西占据 space 的 100%,因此该块等于左侧的照片。 Here is a screenshot of the space。在此先感谢您的帮助。

您可以通过 CSS Editor 添加以下自定义 CSS 以将 select 元素和按钮加宽到父元素的全宽:

select[data-variant-option-name] {
  width: 100% !important;
}
.sqs-add-to-cart-button {
  width: 100% !important;
  box-sizing: border-box;
}