How to hide left border color in Category?

image

I hided in desktop using this code and Also want to hide in mobile.

.category-list tbody .category {
    border-left: none;
}

You can try to add:

.category-list .category {
    border-left: none;
}

Should work…

3 Likes

Thank you :slight_smile:

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.