How can I remove borders from images for full width display?

Hello,

I wish to remove the borders for the images on my image and text sections. This would have the image take the full width.

My website: merciane.com

I have uploaded the borders I am referring to for clarity.

Thank you!

Hi @MotionStore111 ,

Its not border I see its the padding.

Try this.

  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” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
  4. And Save.
@media only screen and (max-width: 575px){
.col-lg-4.mb-6.mb-lg-0 {
    padding-right: 0px;
    padding-left: 0px;
}
}

Result:

I hope it help.

Thank you so much Ribe!