Hi. Im using the Dawn theme, version 14.0 and would like to remove the image outline on all breakpoints. I’ve tried implementing code found in another thread, but it didnt work on mobile.
And ideally, I’d like to paste code to achieve this in the custom CSS field within the theme settings.
If you’re able to assist, I’d really appreciate it.
https://thebetterbungee.com/
1 Like
Hi @bungeeboi
Please put this in custom css section
.thumbnail {
box-shadow: none;
border: none;
}
Please check if it works for you
Thanks!
Hi @bungeeboi
Check this one.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
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:
.global-media-settings {
border: none !important;
}
And save.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
1 Like
This did not work. Thank you though.
@bungeeboi
Please try this
.thumbnail, .thumbnail[aria-current] {
box-shadow: none;
border: none;
}
and please be sure you are putting it in custom css section
Thanks!
That didnt work either. And yes, thats where I put it.
Thank you, that did the trick. But I put it in the custom CSS field, rather than editing the specific file you mentioned. I try to avoid editing the individual files because a previous theme broke, and I assume thats why.
Hope ya enjoy that coffee 
So I just noticed this didn’t work for the images on the pages:
https://thebetterbungee.com/pages/retailers
https://thebetterbungee.com/pages/about
Any idea whats up with that?
Hey @bungeeboi ,
For the leftover borders, you can add this code to the custom CSS section,
.rte img {
box-shadow: none !important;
border: none !important;
}
1 Like
oh, did you already solve it? I remove only on the images as you mention. Yes, you can add it on the custom css on the customize theme.
Thank you for the coffee. 
1 Like