How to remove border around icons in product description?

Topic summary

A user encountered unwanted borders appearing around icons in their product descriptions on their Shopify store. After sharing their store URL (enrgyshop.com), another participant diagnosed the issue and provided a CSS solution.

Solution provided:

  • Navigate to Online Store → Theme → Edit code
  • Open the theme.liquid file
  • Add the following CSS code before the </body> tag:
<style>
.rte.product img {
  border: unset !important;
}
</style>

The original poster confirmed the solution worked successfully, resolving the border issue around their product description icons.

Summarized with AI on November 13. AI used: claude-sonnet-4-5-20250929.

Hi, I have borders around my icons in the description of my product. Any idea how to remove them?

Hello @IZT
can you share store URL?

shopify.com/store/a5e414-2

Hello @IZT

https://enrgyshop.com/products/mountainzest-shilajit

Hello @IZT

You can add code by following these steps to change ATC background color

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.product .rte img { border: unset !important; }
1 Like

It worked, bless you :heart: