Full width product images on Dawn theme

Hello,

Is there a way to get all product images on my product page to be a fixed width? Images are currently in a stacked 2 column layout but I would like all images to be the same size as the first.

Here is my product page layout I’d like to adjust:

https://0ki5fxm6xa52w5oi-71885652270.shopifypreview.com/products/desert-mystic-planner

Thanks!

Hi @catcaudillo

Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media screen and (min-width: 990px) {
    .product--stacked .product__media-item {
        max-width: 100% !important;
    }
    .product__media-item.grid__item.slider__slide {
        width: 100%;
    }
}

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!