Viewing 10 replies - 16 through 25 (of 25 total)
  • Moderator keesiemeijer

    (@keesiemeijer)

    Can you try that again because the first picture is linked to the correct image size: LightheadCover-260×198.jpg. And the second picture is linked to the full size picture. Check with ftp or or whatever file management application your host provides if the other sizes are available in your upload folder wp-content/uploads/2011/01/ .

    Thread Starter ricketts8

    (@ricketts8)

    It did this on the other site and with other pictures, cutting the picture in half instead of resizing. And yes, other sizes look to be available in FTP.

    Moderator keesiemeijer

    (@keesiemeijer)

    Did you figure it out? When I look at: https://portnoy.emprisereview.com/?cat=13 It looks like the image size is changed?

    Thread Starter ricketts8

    (@ricketts8)

    Yeah, kinda. The change made there worked much better on the real site. Now it’s a matter of locking down CSS.

    Thread Starter ricketts8

    (@ricketts8)

    Last question: How do I make it so that the excerpt is next to and not below the thumbnail?

    Moderator keesiemeijer

    (@keesiemeijer)

    try:

    img.wp-post-image {
    float: left;
    }

    in your style.css

    Thread Starter ricketts8

    (@ricketts8)

    Afraid of that. I had the float and had the thumbnail going left but the text was staying down below the thumbnail.

    Moderator keesiemeijer

    (@keesiemeijer)

    try deleting: clear: both; from this in your stylesheet:

    .entry-content,
    .entry-summary {
    	clear: both;
    	padding: 12px 0 0 0;
    }

    and change

    img.wp-post-image {
    float: left;
    }

    to this:

    img.wp-post-image {
    	float: left;
    	padding: 12px 12px 12px 0;
    }

    Thread Starter ricketts8

    (@ricketts8)

    Nice. That did it. Thanks.

    Thread Starter ricketts8

    (@ricketts8)

    Is anyone still watching this thread? I have another question.

    I need different thumbnail sizes. The default thumbnail is 100×150, which is fine. I also need the opposite ratio, so let’s say 150×100.

    I know the code to add in the function.php file, I think my problem is in the template page.
    *****code starts*****
    <div class=”entry-thumbnail”>
    <?php the_post_thumbnail(‘thumbnail’); ?>
    <?php the_post_thumbnail( ‘category-thumb’ ); ?>
    <div class=”entry-summary”>
    <?php the_excerpt(); ?>
    </div><!– .entry-summary –>
    </div><!– .entry-thumbnail –>
    *****code ends******

    I pasted in the ‘<?php the_post_thumbnail( ‘category-thumb’ ); ?>’ line to my existing and working template and I wasn’t given the option for the second thumbnail. I’d guess it’s some and or language I need–I don’t know what it is–

Viewing 10 replies - 16 through 25 (of 25 total)
  • The topic ‘Twenty-Ten Thumbnails’ is closed to new replies.