Michael
Michael

Reputation: 525

Why isn't something hiding?

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

Answers (1)

Paul Tomblin
Paul Tomblin

Reputation: 182782

collection-506d943d84aead5098d63cc2 is a class, not an id, so you don't specify it with a '#' in the CSS.

Upvotes: 3

Related Questions