Rather than wrapping text/post meta/share links/everthing around my featured picture, I would like it to remain in a division to the right of the picture and not wrap.
Here is what I'm talking about.
http://www.themiddlevote.com/debate/test-debate-slug/
With a really long title (or if the picture is smaller), the content to the right of the picture wraps around the image. How could I force the content to remain in its own div to the right of the picture
Here is the code I'm currently using.
PHP Code:
if ( has_post_thumbnail() ) {
echo '<div class="clear"></div>';
printf( '<a href="%s" title="%s">%s</a>', get_permalink(), the_title_attribute( 'echo=0' ), genesis_get_image( array( 'size' => $size, 'attr' => $default_attr ) ) );
}
else {}
echo genesis_do_post_title();
echo "<h6>" . genesis_get_custom_field( '_tmv_authorA_name' ) . " vs. " . genesis_get_custom_field( '_tmv_authorB_name' ) . " - " . the_date('', '', '', FALSE) . "</h6> ";
echo genesis_post_info();
echo do_shortcode('[social_share/]');
Thanks!