Hi there,
I have an issue with my website www.prettyinpink.ie with the product varient size boxes. If you take a look, the XS box is not outlined, but Small / Med / Large are all outlined. Its leading my users to believe the XS is out of stock.
Ive added some extra CSS below which hasnt fixed the issue. I would appreciate help!
.line-item-property__field textarea {
border: 1px solid #ccc;
width: 100%;
}
1 Like
Hi @wixiemrs ,
Try 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:
- And Save.
label.variant__button-label {
border: 1px solid black;
}
Result:
I hope it help.
Thank you so much, that fixed the issue!
1 Like