Removing Blog Titles

Hello,

I have tried many different things to remove the blog titles from all pages, with no luck.

Ideally I would like the blog page, which has a grid of all blog posts, to include the title. Then once the user clicks into the individual blog post, I’d like that title to be eliminated.

http://colorisadream.com/blog-2/

I’ve tried the following codes:

.page .entry-title, .page-title{
display:none;
}

.page .entry-title{
display:none;
}

Added these codes to both the X > Theme Options > CSS, and Appearance > Customize > CSS.

I’ve also tried plugins, “Hide Page and Post Title” and “Title Remover”… The first didn’t work, the second removed the title but not the page icon.

Hi There,

Thank you for writing in, your CSS code is for pages. this is for posts.

/*hide the posts title*/
.single-post .entry-header {
	display: none;
}

Add this to Theme Options > CSS

If you need to get rid of that big space above the banner image, Please add this to Theme Options > CSS as well.

.single-post .entry-featured {margin-top: 0 !important;}
.single-post .entry-wrap {padding-top: 0;}

Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.