How to darken the Lines Under Filter product collection page? Dawn

How to darken the Lines Under Filter product collection page?

How would I darken those lines in-between each subcategory filter?

www.extremekool.com

Password01

![111Capture.PNG|372x563](upload://w569B7WrgrKluBPGroAfxojqhrO.png)

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);