Hide sub-category logos on categories page

Is there a way to hide sub-category logos only on the main categories page?
The only asset I could find is this one:

.category-logo.aspect-image

But when I hide that, all category and sub-category logos everywhere are hidden.
I went from this:



To this:

The only place I want to hide the logos is here:

Anyone know what that asset is called?

@Lilly Thanks, not sure how I cut that off.

1 Like

maybe try adding this CSS (to the theme or a theme component on your site):

.category-boxes .subcategories .subcategory .subcategory-image-placeholder {
    display: none;
}

Thanks! That did it, but there’s a weird side effect I needed to remedy as well.

When I was hiding everything, this box looked balanced:

Now it looks like this:

Needed to also add:

.category-boxes .subcategories .subcategory {
    padding: 0px 10px 0px 0px;;
}

To make it look right.
Does that look like the right element?

Would sooth my OCD even more if I could somehow make that 2nd column start in the same place, but this will do for now if that’s not possible.