removing title in post and portfolio items from header without removing header

Hi Guys,

How can i remove the title from the header in the blog and portfolio pages without removing the image?
I saw various answers of how to remove the whole header. But i made a custom image and the title is now overlaying it.
Is there a way to fix this?

Hello there,

I hope you are doing well today.

You can use the following CSS code to remove the title by going to Appearance > Customize > Additional CSS and pasting it there.


.page-title {
    display: none;
}

Best Regards,
Support

Thanks a lot it worked !

ah that’s weird, now it’s back. So i guess it didn’t work unfortunately

Following…I have the same issue.

Hello,

Please send your website URL so we can check that.

You can mark your reply as private if you don’t want to share your website URL with other users.

Thanks!

Hi!

My adress is
www.chantalpasker.com
Thanks in advance for looking at the problem :slight_smile:

Good morning

This css will remove page title only from portfolio pages and blog pages:


[class*=portfolio] .page-title,
[class*=blog] .page-title {
display: none;
}

Please add it in appearance > customize > additional css and lets check it out :slight_smile: