Hide description in subcategory boxes [how edit css?]

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