When I insert an image in the dawn theme on my product description it has a border, how do I remove this border?
Store is: sipsnap.store
Hey @sipsnapshop
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above tag
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hi @sipsnapshop ,
You can try this code by following these steps:
Step 1: Go to Online Store->Theme->Edit code.
Step 2: Search file base.css
Step 3: Paste the below code at the bottom of the file → Save
.product__description img{border:none !important}
Hope my solution works perfectly for you!
Best regards,
Oliver | PageFly
Hello @sipsnapshop
.product__description.rte.quick-add-hidden .rte img {
boder: none;
}
Hi @sipsnapshop
Follow these Steps:
This worked great, instead of editing the theme code - Added it to Custom CSS in Theme Settings! Thanks for the solution.