Hi,
.post_title_con{
display:none;
}
use above css in custom css editor.
It’ll hide title, date and author name.
Thanks
Hi,
Did the above solution work for you.
We are marking this tickets as resolved.
Thank You
What if we want to keep all of that meta and remove the first title? The one at the top, taking up a ton of dead space. Can that title be removed instead of the second one referenced in this code?
.post_title_con{
display:none;
}
Hi,
Here we are sending a screen-shot for your view.
Link is HERE.
If you want to remove selected title then please follow below instructions:
Put below CSS rules into Custom CSS Editor:
.page_title h1 {
display: none;
}
Save the changes.
And if you want to remove whole breadcrumbs section then put below CSS rules
into Custom CSS Editor:
.page_title:not(.has_bg_image) {
display: none;
}
Save the changes.
Thank You