Hide description in subcategory boxes [how edit css?]

I read this post and it mentioned to customize the CSS. I just wonder: how to do this more specifically?

I’m able to get this far:

And get to the code editor:

But from there on…?

Hi Ronald :slight_smile:

Almost there!

Pay attention to the selector used you can see in your browser’s dev tools:

(on the right here)

As .description alone can target unwanted elements, the proper selector is:
.category-boxes .description.

The code then would be:

.category-boxes .description {
  display: none;
}
4 Likes

Thank you very much! :grin:

One little detail is the : should be ;, otherwise you get an error :stuck_out_tongue_closed_eyes:

.category-boxes .description {
  display: none;
}
1 Like

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