how can i make my text appear along side my featured image instead of below it in my wordpress posts -
im constructing articles section on test.smartphonesource.org , featured image appearing along post excerpts seems loading articles excerpt below image text appear alongside image , flow naturally in post's body im going shortening excerpts , adding read more button achieve effect similar website http://healthcave.com/ cant seem find styles or code causing happen here code page template calling thumbnail images , content
<?php get_header(); ?> <div id="breadcrumb"> <?php breadcrumbs(); ?> </div> <?php include(templatepath."/customrightsidebar.php");?> <div id="kontenutama"> <div class="postingan2"> <?php if (have_posts()) : while (have_posts()) : the_post();?> <h2><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>" rel="bookmark"><?php the_title(); ?></a></h2> <?php if (function_exists('has_post_thumbnail') && has_post_thumbnail()) the_post_thumbnail(); the_content(); ?> <?php endwhile; else: ?> <p><?php _e('sorry, no posts matched criteria.'); ?></p> <?php endif; ?> <br style="clear:both;"> </div> </div> <br style="clear:both"> <div style="clear:both"></div> <?php get_footer()?>
any figuring out appreciated =)
Comments
Post a Comment