Hide blog header

Posted in: Newspaper
Post count: 1

Hi, Is it possible to hide the blog header for a certain category and only use visual composer to build the entire page, yet still have the featured image and excerpt show on the homepage when I link it?

I want to create a few competitions so I don’t want it to look like a blog, but I want to keep some of the blog functions such as showing other similar comps and the sharing facilities etc.

Many thanks in advance.
Ryan

Post count: 22421

Hi,

If you are referring to the post title, you can hide it with css on specific posts using css and the post ID.
Every post has a unique id you can use together with css and hide the title:
.postid-7450 .entry-title{
display:none!important;
}

You can add multiple posts to the code by finding their id’s:http://screencast.com/t/ZnQde99s8w1 and then adding a new code with a “,” like so:
.postid-7450 .entry-title, .postid-7451 .entry-title, .postid-7452 .entry-title, .postid-7453 .entry-title {
display:none!important;
}

I hope this helps.
Thank you!

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.