Large last image on the Dawn theme product page

Does anyone know where I can find the setting to increase the width of the last image on the dawn theme (Product page).

This is what I’m currently looking at. But I want the last image to increase it’s width.

Any help will be appreciated!!

Hello,

Can you share your website link?

The below CSS code should achieve what you are looking for:

ul .slider__slide:last-child {
  width: 100% !important;
  max-width: 100% !important;
}

Adding it at the end of your base.css file should be working as expected.

Cheers!

Hey Gabriel, here’s the link.

unearthprnt.myshopify.com

Update: Tried using the CSS code you provided but didn’t work.

Hi Adrian,

According to your theme settings, the below code should do the job:

ul .slider__slide:last-child {
  width: 100% !important;
  max-width: 100% !important;
}

Let me know if this addressed your question.

Cheers!

Gabriel