Hi can someone please help me? I want to remove the rectangular border in the variant picker where the sizes are. My website is elliotkohn.co.il. Thank you!
1 Like
Hi @Ady2 ,
Try this.
- 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.
fieldset.variant-picker__option.v-stack.gap-2.no-js\:hidden {
border: none;
}
Result:
I hope it help.
1 Like
You are awesome!! Thank you very much for your help!!! Do you mind helping me in another issue i have? Bellos the variant picker i have the quantity picker and i dont know why It turns in bold Borders. Can you please help me fix this? Thank you very much!!
In the quantity picker, the Borders turns in bold and i dont know why
1 Like
Try this.
Same Instruction.
input.quantity-selector__input {
border: 1px solid gray;
}
button.quantity-selector__button {
border: 1px solid gray;
}
Result:
1 Like
You are a genius! Thank you very very much for your help!!!
1 Like