Dawn 8.0.0 change image layout position on product page

Hi Community

I need to change the product image thumbnail carousel position on the Dawn theme 8.0.0. See image. I need the small carousel images in the middle as most of the products only have 2 or 3 images. Thanks

Hi @Joegr7 ,

This is Richard from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/section-main-product.css->paste below code at the bottom of the file:

@media screen and (min-width: 990px) {
    .product--thumbnail .thumbnail-list {
        display: flex !important;
        justify-content: center !important;
    }
    .thumbnail-slider .thumbnail-list__item {
        width: 15% !important;
    }
}

I hope it would help you
Best regards,

Richard | PageFly

@PageFly-Richard Hi Richard, it did not work, unfortunately. Do you know why?

Hi @Joegr7 ,

I’m sorry to hear that. Please give it a try with this new solution:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/section-main-product.aio.min.css->paste below code at the bottom of the file:

@media screen and (min-width: 990px) {
    .product__media-wrapper .product__media-list {
        flex-wrap: nowrap;
        justify-content: center;
    }
    .product__media-item {
        width: 20% !important;
        flex-grow: unset;
    }
}

I hope it would help you
Best regards,

Richard | PageFly