Suits theme – removing page titles

  • Unknown's avatar

    Evening all

    I’m working on the Suits theme to turn what was a blog into my website – domain name to follow – and I want to know if there’s a way of removing the page titles “home”, “about me” etc from the top of their respective pages. Or, alternatively, to do the titles about the featured images on the page. I’m assuming this needs the CSS customisation upgrade, but any guidance on what code to put in to make things work would be much appreciated.

    site is http://donbrownsblog.wordpress.com

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    If you have the Custom CSS upgrade, adding this to your CSS will remove the titles from the top of Pages:

    .page .entry-title {
       display: none;
    }

    This will still allow “Post” titles to display.

    Or, alternatively, to do the titles about the featured images on the page.

    I’m not sure what you mean by this, exactly. If it’s something you want to do as well, feel free to elaborate and I’ll provide any answers I can.

  • Unknown's avatar

    Thanks very much – that works really well.

    Or, alternatively, to do the titles about the featured images on the page.

    That should have read “above” instead of “about” (a combination of fat fingers and autocorrect), so that the page would be:

    [page title – e.g. “about me”]

    [featured image]

    [body copy]

  • Unknown's avatar

    Gotcha. And is the “featured image” you’re referring to the image that is currently at the top of your Pages? The sort of geometric bar of squares at the top?

    If so, you could use this CSS to rearrange it with the Page title:

    .entry-header {
        display: table;
    }
    .entry-title {
        display: table-header-group;
    }

    Hope this helps! If I misunderstood your meaning, though, let me know!

  • Unknown's avatar

    That’s brilliant – thanks very much. I’ll play around with this on my sandbox site and then decide which route I want to go down.

    I’m planning on doing a blog post later this week called something like “in praise of wordpress” – not just because the software’s so flexible, but also because people like you help out people like me. Thanks again.

  • Unknown's avatar

    Great! WordPress is definitely a wonderful platform, made better by the community of user’s who so actively offer their support.

  • The topic ‘Suits theme – removing page titles’ is closed to new replies.