I am modifying with css a widget the wordpress in which there is a title of the news and a summary. It turns out that the title has an assigned class, but the summary only appears as "" (without class).
So I wanted to select everything except the title (a h3 with a) and had taken from here something like this, but it turns out that I get the opposite effect (hide only H3 with the link to make the rest visible):
.content.table-cell > :not(a) {
display: none !important;
}
How can I get it? Thank you very much