How to remove grey outline border from Image part of 'Image with text' section of dawn theme?

I’d like to remove the grey outline border from the image part of ‘Image with text’ section of dawn theme.

Any advice is really appreciated.

1 Like

Hi @BraxtonEcom ,

Would you mind to share your URL website? with password if its protected. Thanks!

URL: https://tyton.uk/

Thank you :slightly_smiling_face:

1 Like

URL: https://tyton.uk/

Thank you for the information. 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:
  4. And Save.
.image-with-text__media.image-with-text__media--adapt.gradient.color-background-1.global-media-settings.media {
    border: none;
}

Result:

I hope it help.

1 Like

Hi @BraxtonEcom

This is Richard from PageFly - Shopify Page Builder App, I’d like to suggest this idea:

Online Store ->Theme ->Edit code

Assets ->Base.css

.global-media-settings {
    border: 0 !important;
}

Hope you find my answer helpful!

Best regards,

Richard | PageFly

1 Like