Viewing 7 replies - 1 through 7 (of 7 total)
  • The blog post page is coded to be centered. You’d need to edit the CSS for that page to change the layout.

    Yes, your content div for pages is

    #primary {
        float: left;
        margin: 0 -26.4% 0 0;
        width: 100%;
    }

    your single post div is :

    .singular #primary {
        margin: 0;
    }

    So you could try replacing that with #primary in your single.php template.

    Thread Starter ThemeMeme

    (@leo-colston)

    Thanks guys, looking much better!

    https://thepennyauctionsite.co.uk/record-madbid-ipad-price/

    One more question: my comments don’t seem to be working. Try and make a comment…it doesn’t seem to want to do anything.

    This is how the code looks in twenty ten:
    I have this:

    <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>

    then this:

    <?php comments_template(  ); ?>

    maybe your’re missing the template tag?

    Thread Starter ThemeMeme

    (@leo-colston)

    Well, that was lucky!

    I added <?php comments_template( ); ?> to my index.php after the line <?php get_template_part( ‘content’, get_post_format() ); ?> and it works!

    Thanks very much deepbevel.

    i’ve been wondering about it myself, I think the tag works without the link code. did you remove the link?

    Thread Starter ThemeMeme

    (@leo-colston)

    No I didn’t. Thanks again.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘My posts look different to my pages. Why?’ is closed to new replies.