• Resolved thebadprince

    (@thebadprince)


    As the title says, I’m wondering if there’s a way to remove the post title on the sidebar? This happens when you click a post and the post title text is layered above the featured image.

    Here’s what I mean:

    SAMPLE

    I find it redundant, and interferes with the featured image. It makes it look cluttered, especially if the post title is long and can’t be displayed in full anyway.

    Thanks for any help!

Viewing 7 replies - 1 through 7 (of 7 total)
  • Sure, adding this to your custom CSS will remove the title in the header on the single post view:

    .single-post .entry-header .entry-title {
    display: none;
    }

    Let me know how it goes.

    Thread Starter thebadprince

    (@thebadprince)

    Works!!

    Thank you very much! 🙂

    My pleasure, glad that did the trick.

    I wanted to let you know that it turns out the post titles appearing in two places on single post view was a glitch in the theme, and it’s been fixed in the next version, which has just been resubmitted to ww.wp.xz.cn.

    The post title is actually intended to show on the header image, not above the text in the main column, so that’s how the new version displays single posts. I just wanted to give you a heads-up in case you update the theme you’ll be aware of what happened.

    p.s. you can see the new version in action on this demo site:
    http://bushwickdemo.wordpress.com/

    Thread Starter thebadprince

    (@thebadprince)

    Hi Kathryn,

    So I updated to the new version and it looks much better on mobile/tablet.

    My question is: is there a way to put the title above the content (h1) and not the sidebar in the new version?

    Thanks.

    – JC

    My question is: is there a way to put the title above the content (h1) and not the sidebar in the new version?

    Try adding this to your custom CSS:

    .single .hentry .entry-title {
        display: block;
    }
    .entry-header .entry-title {
        display: none;
    }
Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Remove Post Title on Sidebar for Clicked Posts?’ is closed to new replies.