Hello,
I am trying to add a border for the variant box on product pages on my store, I am using the Taste theme and my store URL is styl-case.myshopify.com.
I have already removed all borders on my site using this code:
:root, .color-background-1 {
--color-foreground: none !important;
}
And I have made an exception for a border on the title page with this code:
div#ImageWithText--template--16228551524606__16582879129a2953e5 {
border: 2px solid black !important;
}
Which looks like this, notice how there are no borders on the multicolumn images, which is what I wanted.
But now I am trying to add a border for the variant drop-down box on all product pages, here is an example url: (https://stylcase.com/products/custom-laptop-sleeve) and this is what it looks like at the moment
I have tried adding this code to my theme to add a border to the “12 inch” box, but it did not work.
div#Option-template--16228551491838__main-0 {
border: 2px solid black !important;
}
Thank you for reading, any help is appreciated.


