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.