It’s a minor inconsistency in how WordPress outputs classes when using body_class() and post_class(). You need to use either:
.post-xxx { ... }
or, on a single post view:
.postid-xxx { ... }
hmm…
so i tried
.post-13 #site-description {
display:none;
}
and
.postid-13 #site-description {
display:none;
}
and nothing changed.. any ideas?
Here is a link to site in case it helps
http://settlein.michaelsmithcreative.com/portfolio/
Your theme isn’t outputting the post ID on your portfolio page, which may be by design. Unfortunately, as I don’t have access to your parent theme, I’m afraid I can’t see what’s going on. I suggest you contact your theme’s vendor: http://catchthemes.com/support-forum/
As per the WordPress body_class()
Page ID will be: page-id-15
Post ID will be: postid-15
But your portfolio is neither page not post. It is your blog/archive. So, you need to use
.blog #site-description { display: none; }
Note: For more about body class you can read this http://codex.wordpress.org/Function_Reference/body_class
@stephencottontail: Thanks for link to our support forum as we provide fast support from our support forum. I recommend all our users to post there.
Thanks for the help, both of you.