How to darken the Lines Under Filter product collection page?
How would I darken those lines in-between each subcategory filter?
Password01
How to darken the Lines Under Filter product collection page?
How would I darken those lines in-between each subcategory filter?
Password01
Go to your online store → customize → settings → custom css and paste this code there
@media screen and (min-width: 750px) {
.facets__disclosure-vertical {
border-top: .1rem solid rgb(0 0 0);
}
}
Hi @Brian-A ,
You can go to Admin → Store Online → Theme → Looking to theme live currently, and click to Customize then click to Edit Code → Finding to Assets/component-facets.css file and finding to here:
And then remove border top attribute currently and change to:
border-top: 0.1rem solid rgba(var(--color-foreground), 1);