• Resolved chawke

    (@chawke)


    I added thumbnails to my posts in page, but the spacing is messed up in several of my pages.

    http://www.carlhawke.com

    For example, when you go to “Portfolio” and “Set Design & Construction” you can see that the spacing gets progressively worse. I’m thinking it’s something to do with the code inside the posts_loop_template.php, but I’m not sure.

    Here’s what I have now:

    <!– NOTE: If you need to make changes to this file, copy it to your current theme’s main
    directory so your changes won’t be overwritten when the plugin is upgraded. –>

    <!– Start of Post Wrap –>
    <div class=”post hentry ivycat-post”>
    <!– This is the output of the post TITLE –>
    <h2 class=”entry-title”>“><?php the_title(); ?></h2>
    <!– This is the output of the excerpt –>
    <div class=”entry-summary”>
    <!– This will output of the featured image thumbnail –>
    <div class=”featured-image”>
    <?php the_post_thumbnail( array(180,9999), array(‘class’ => ‘alignleft’)); ?>
    </div>
    <?php the_excerpt(); ?>
    </div>
    </div>
    </div>
    <!– // End of Post Wrap –>

    Can you shed any light on this?

    http://ww.wp.xz.cn/extend/plugins/posts-in-page/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter chawke

    (@chawke)

    I kept working on it and fixed a lot of the spacing issues, but many of the excerpts are not wrapping to the next line and instead run off the right side of the page.

    Here’s the code now:

    <!– Note: if you make changes to this file, move it to your current theme’s
    directory so this file won’t be overwritten when the plugin is upgraded. –>

    <!– Start of Post Wrap –>
    <div class=”post hentry ivycat-post”>
    <!– This is the output of the post title –>
    <h2 class=”entry-title”>“><?php the_title(); ?></h2>

    <!– This will output of the featured image thumbnail –>
    <div class=”featured-image”><?php the_post_thumbnail( ‘thumbnail’ ); ?>

    <!– This is the output of the excerpt –>
    <div class=”entry-summary”>
    <?php the_excerpt(); ?>
    </div>

    </div>
    <!– // End of Post Wrap –>

    Any idea why the text is not wrapping on some pages?

    Plugin Author Eric Amundson

    (@sewmyheadon)

    Hey chawke,

    Closing out this support thread as we dealt with your issue in this thread:

    http://ww.wp.xz.cn/support/topic/excerpt-behavior-inconsistency?replies=7#post-3996212

    Cheers,
    Eric

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Spacing is messed up’ is closed to new replies.