• Resolved paulmc911

    (@paulmc911)


    Sorry I posted this before on my previous issue, which you resolved for me, hence I’m now posting it as a new thread.

    So my page title appears on my menu, which is perfect. But it also appears in the body of the page, and I don’t want that. How can I remove it?

    Thanks, again!

    https://www.bibliophone.com

Viewing 7 replies - 1 through 7 (of 7 total)
  • Hey there paulmc911,

    Hope you’re well today!

    Try adding the following CSS code in the style.css file of your child theme or if your theme doesn’t have custom CSS tab add it in your site using the following plugin:

    https://www.ads-software.com/plugins/simple-custom-css

    h1.entry-title {
    display: none;
    }

    This should remove the title from your page.

    Hope this helps ??

    Cheers,
    Bojan

    Theme Author Han

    (@hwijaya)

    The easiest way is to hide it via css

    .entry-title {
        display:none;
    }

    Thread Starter paulmc911

    (@paulmc911)

    Hey guys – thanks, that did the trick. The only problem is (and it’s a strange one!) that while the solution did exactly what I wanted it to, when I come to look at the site as a user would (i.e. not in admin mode) the grey border is still there and the entry title is still showing! And then when I log back in as admin, it’s gone again and the site looks just how I want it. It’s as though my changes are only saving for me and not for anyone who views the site.

    Theme Author Han

    (@hwijaya)

    Maybe there is syntax error. please go to “Appearance > Customize > CSS”, and post your custom css here so I can check.

    Thread Starter paulmc911

    (@paulmc911)

    Sure, here is what I have:

    .site-header {
        background: transparent;
    }
    
    .entry-title {
        display:none;
    }
    Theme Author Han

    (@hwijaya)

    That should work. It looks like you use a cache plugin. Please clear the plugin cache.

    Thread Starter paulmc911

    (@paulmc911)

    That did the trick, thanks Han!

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘How do I remove the page title from the body of the page?’ is closed to new replies.