• Hello, I am attempting to have 6 thumbs in 2 rows, 3 columns per row but I am unable to figure out how to do it. Currently every edit I made to the code still only show it lined up in a single column. I am not sure how to add this look using the code below, any help would be appreciated.

    <?php
    $how_many=6; //How many posts do you want to show
    require_once("/home/***/********.com/public_html/wp-config.php"); // Change this for your path to wp-config.php file ?>
    
    <?php rewind_posts(); ?>
    <?php query_posts('orderby=recent_posts&showposts=3&cat=41'); ?>
    <?php if (have_posts()) : ?>
    
    <?php while (have_posts()) : the_post(); ?>
    
    <?php the_content(' <more>'); ?>
    
    <?php endwhile; ?>
    
    <?php else : ?>
    <div class="editor">
    <?php _e("No blog entries could be located. If this error continues then please let me know!"); ?>
    </div>
    <?php endif; ?>

    [ Please do not bump, that’s not permitted here. ]

The topic ‘3 Thumbs side by Side’ is closed to new replies.