Problem with Product Images while in a Collections list

Why are my product images showing like this when a collection is pulled up? Once you get into the products the images are fine. It looks like there are two columns here.

https://www.friendsandfiberworks.com/collections/classes-with-heidi-sunday

Does anyone have any ideas?

Linda

Hi @LisaFandF ,

For some reason, your images are set to position: absolute and left position is not provided. Please add the code below to fix the issue.

  1. From your Admin store, go to Online store > Themes > Click Actions > Edit code
  2. Open the Asset folder, and find the theme.scss file.
  3. Add the code below.
.collections__content__item__img-c__swatch-imgc__img--variant {
    left: 0;
}