Removing page title

Hello,

I wish to remove the ‘About’ title at the top of my page here
https://www.littlenomadgal.com/about/

Thank you.

Hey there

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

/*remove page title*/
header.entry-header.page-header {
    display: none;
}

Best Regards,
Support

Thank you!

Wait but entering that CSS code removed all my post titles from my home page too.

Is there a way to remove just the page title but not the post titles?

Hey there,

Thank you you for replying with that information.
You can do that buy using the code below, simply replace the previous code with this one.

/remove page title/
.page header.entry-header.page-header {
display: none;
}

Best Regards,
Support.

Thank you very much!