This CSS will hide your post titles in the header for each post.
.single-post .post_page_title, .subtitle {
visibility: hidden;
}
Copy and paste the code into Appearance> Theme Options> Custom CSS.
Let me know if this works for you.
Thread Starter
gnewby
(@gnewby)
Well yes that made the title go away, but it didn’t accomplish the main goal of reclaiming that screen space back! Effective I want the top background image to be less pixels high, and just to be behind the menu/logo.
Thanks, Glenn
Try this instead and let me know if that’s what you’re looking for.
.single-post .post_page_title, .subtitle {
display: none;
}
Thread Starter
gnewby
(@gnewby)
No, that just makes the title go away…
But this seems to work:
div#pageheader {
height: 100px;
}
Don’t know if there are any other negative repercussions from this?
Also, I’d like to be able to do this by individual page (or at least try it!).
That shouldn’t have negative effects, but if it does, you can always go back and change the CSS.
If you want to do it on a per-page basis, then you can specify the page in your CSS.
The page classes can be found “body” section of your html. It will look something like
.home
.page-id-132
.portfolio
etc…
just ad that tag to the beginning of your CSS block, and it should allow you to select each page.