Reputation: 525
I've hidden a banner on my blog using the below code:
#collection-506d943d84aead5098d63cc2 #banner-area {
display: none;
}
However, when I click on a post title, it reappears.
Why is this?
Upvotes: 0
Views: 44
Reputation: 182782
collection-506d943d84aead5098d63cc2
is a class, not an id, so you don't specify it with a '#' in the CSS.
Upvotes: 3