WordPress.com Homepage Showing Blog Posts Incorrectly

  • Unknown's avatar

    My website is nerdythirtysomething.wordpress.com

    The most recent posts are NOT being shown on the front page properly. They are showing old blog content with photos of newer content and the design is messed up as well.

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

  • Hi
    It looks like something to do with the theme itself.
    If you add this rule to Additional CSS the posts appear:

    .post, div.page {
    	background-color: transparent;
    }

    and then create the white background by adding this

    #content {
    	background-color: #fff;
    }

    It also looks like your theme was originally 2 column but this has been changed which is why the top content (originally left column) is narrower than the bottom content.
    You could make it full width by adding the following:

    #main {
    	width: 100%;
    }

    Let me know how you get on.

  • Unknown's avatar

    I don’t have an “Additional CSS” option, at least not one I can find. I’ve tried changing the theme and that seems to do the trick.

  • Unknown's avatar

    I wish I didn’t have to do that but it appears to be the only way at this point.

  • The topic ‘WordPress.com Homepage Showing Blog Posts Incorrectly’ is closed to new replies.