Iβm looking to add a border (box) around the return policy and remove the outline below
password samurai
A user wants to add a border around their return policy element and remove an existing underline on their Shopify store.
Solution Provided:
.product__info-container .product-popup-modal__button.linkVisual Result:
Screenshots demonstrate the bordered return policy button in both normal and hover states, achieving the desired boxed appearance without the underline.
Status: Solution appears complete with working CSS code provided.
Iβm looking to add a border (box) around the return policy and remove the outline below
password samurai
You can add below CSS under the THeme settings β Custom CSS and try that.
Go to the online store β Theme Customize β Theme settings β Custom CSS
Screenshot: https://prnt.sc/F0tSqBmCUaKe
.product__info-container .product-popup-modal__button.link {
text-decoration: none;
border: 1px solid #000;
padding: 10px;
transition: 0.3s all;
}
.product__info-container .product-popup-modal__button.link:hover {
background: #000;
color: #fff;
}
This is how it will look like after adding the CSS https://prnt.sc/xWe48mHdmQGt
https://prnt.sc/OSD38UKy6_cQ this is on hover.
If you require further help to optimize your store, please donβt hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!