Remove Page Title on just one page entry.

Hello,
Is it possible to remove the page title for just one of my pages? Basically, I have an image that will say what the page title is and I don’t want it on there twice.

Thanks!
Megan

http://oddyearstravel.com

Hi Megan,

Yes, it is possible to remove title only one one page. You need to specify page ID. For example, here is a way how you can remove title for your About page

#post-74 .entry-title {
    display: none;
} 

You can see this ID via Chrome Dev tools (Inspect element) or inside your website source, or when editing your Post/Page.

Let me know if this helps