When I Select the drop down menu on the site it makes the border black, how do i make it so the Drop down menu Border doesn’t change whether its selected or not?
Site: https://benwilson.co/products/pillar-pendant
pass:egunte
Thanks!
A user encountered an issue where selecting a dropdown menu on their product page caused an unwanted black border to appear.
Another participant provided a straightforward CSS solution:
.select__select:focus {
box-shadow: none;
}
The original poster confirmed the solution worked successfully.
When I Select the drop down menu on the site it makes the border black, how do i make it so the Drop down menu Border doesn’t change whether its selected or not?
Site: https://benwilson.co/products/pillar-pendant
pass:egunte
Thanks!
Unfortunately, you need to modify it via code, but it’s an easy one.
.select__select:focus {
box-shadow: none;
}
Thank you so much worked great!