Hi Ronald ![]()
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;
}
