Remove Default Post Title Listing

Hi,

How do I remove the ‘top’ blog post title? I have tried CSS code

'.x-landmark {
display: none;
}

and CSS code

header.x-header-landmark {display: none;}

and gone into Portfolio of Cornerstone to look for ‘Meta Settings’ but ‘Meta Settings’ is no longer there. Neither option works.

The example post,

https://www.rhodestostrength.com/2017/10/5-ways-lifting-weights-will-alter-your-life

Want to remove the top left title which is the default post title to identify the post in the All Posts listings.

Thank you!!

Hi,

You can try this code instead,

.single-post . entry-wrap > .entry-header { display:none; }

Hope that helps.

Hi,

That code did not work. Maybe I’m inserting it incorrectly but I’m adding that code into the Global CSS under Theme Options correct? Thanks!

Hello Candace,

Thanks for asking. :slight_smile:

Please try out following CSS and let us know how it goes:

.single-post .entry-header {
    display: none !important;
}

Thanks.

It worked. Thank you so much!

You’re more than welcome, glad we could help.

Cheers!

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