Hi,
Try using this:
.page-id-209 .headerclass {
display: none;
}
If that doesn’t work please post a link.
Hannah
Thanks, Hannah! Worked … too well ;-)) Realized I only wanted the logo removed, not menu, so altered your code as below and it worked.
.page-id-209 div#logo {
display:none;
}
Glad you got it figured out:)
Hannah
I thought so too 😉 except I can’t get it to work on posts, only pages. Obviously I need to change something in the code?
You would just need to change the page id. Do you want it to apply to all posts? Can you post a link?
Hannah
You know, you guys are amazing. INCREDIBLE support. Went through a boat-load of themes, paid and free, before I settled in with Virtue. Loving it.
Anyway, I thought the page id would work for posts, too, but it isn’t for some reason.
Here’s the PAGE with the shortcode working (logo gone).
.page-id-209 div#logo {
display:none;
}
Here’s the POST with it NOT working. (logo showing)
.page-id-207 div#logo {
display:none;
}
I do have a knack for finding glitches ;-))
Glad you’re happy! Very much appreciated:)
Your css was close! This should work:
.postid-207 div#logo {
display: none;
}
Hannah