How can I remove borders from my product images on the Dawn theme?

My product images have a border around them, i would like to remove this or make it transparent, same with the small photos at the bottom, What is some code to do this?

Theme:dawn

website:desire-online.net

1 Like

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code

  2. Find Asset > base.css and paste this at the bottom of the file:

.product-media-container {
    border: none!important;
}

this did not work

1 Like

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > base.css and paste this at the Top of the file:
.product-media-container {
border: none!important;
}