Debut theme Change Number of Pictures in a Row of a Product Page

Hello everyone,

Today I want to change the number of pictures in a row of my product page.

My page is https://weststartexas.shop/products/783c-concho-belt?variant=43144092909760

see each variant should have 5 pictures in a row instead of 4. I want to move the 5th picture to the right side like the picture showed.

How can I edit this in the theme Debut?

Thank you

1 Like

@Aaron10

yes please try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.css ->paste below code at the bottom of the file.
@media (min-width: 990px){
.product-single__thumbnails-item--medium {
    flex: 0 0 20%;
}
}
1 Like