Remove Heads at Top of Page: Bueno Theme
-
I’d like to remove the heads at the top of each page, but NOT the navigation bar heads for all pages EXCEPT my blog page. The theme is Bueno.
The blog I need help with is: (visible only to logged in users)
-
Your site is set to private so I cannot view it and I’m also a little confused as to what you are actually wanting when you say “heads.”
Can you temporarily make your site public (middle option at settings > privacy) so I can look and could you clarify a little more what you are wanting to hide? Perhaps a specific example?
-
Whoops! The site is now public. I will try to explain clearly.
At the top of the home page, there is a clickable navigation bar that lists all the pages on the site. Click on the name of a page, and you go there.
Below that navigation bar is a header that says “Home” in non-clickable text. I don’t want that there, as it looks amateurish. I want to do that for all the pages except for my blog pages, which is called “News.”
Is this a better explanation. Thanks for your help.
-
Yes, and seeing the site helped as well. Give this a try.
.page .post .title { display: none; } -
-
-
I also have bueno and am trying to delete the titles on my static pages but not on the navigation itself. I don’t see anything in my css that has .page .post .title {
-
-
-
No, it doesn’t. The only thing that I have as a page is pagenav. This is what I have for title:
.post .title {
width:100%;
position:relative;
color:#000;
border-bottom:1px solid #e7e7e7;
font-size:32px;
margin:0 0 30px;
padding:0 0 25px;.post .title a:link,.post .title a:visited {
color:#000;
}.post .title a:hover {
text-decoration:none;
}.post .date {
position:absolute;
top:30px;
left:-40px;
width:71px;
height:60px;
text-align:center;
color:#fff;
padding:10px 0 0;
}.post .title a:link,.post .title a:visited {
color:#000;
}.post .title a:hover {
text-decoration:none;
} -
To clarify, you’d like to remove the title “Magazine” from this page (as one example)?
http://revelantwriting.com/magazine/To do that, you could use this in Bueno:
.post .title { display: none; }But that will remove the title from every single post or page on your site. Is that what you wanted?
-
I noticed it looks like you’re trying to move the top navigation over to the side, but it makes a large gap because the top navigation is still inside the #header container which is separate from the content and sidebar. It might be easier to hide the #pagenav completely and then use a custom menu in the sidebar and style it from there.
http://en.support.wordpress.com/menus/
http://en.support.wordpress.com/widgets/custom-menu-widget/ -
Yes, that is what I’m trying to do. So I should add the word “display: none;” and that will work?
-
Try adding the code just like this in your Appearance → Custom Design → CSS page:
.post .title { display: none; }
- The topic ‘Remove Heads at Top of Page: Bueno Theme’ is closed to new replies.