Thread Starter
torbie
(@torbie)
Oh, forgot to post the php:
<?php $my_query = new WP_Query(‘category_name=ask-giselle&posts_per_page=10’); ?>
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
<?php $my_custom_field = get_post_meta($post->ID, “thumb”, true); echo “<img width=’110′ height=’112′ style=’float:left; margin-left: 0px; margin-top: 0px; margin-right: 15px; ‘ width=’60’ src='”.$my_custom_field.”‘/>”; ?>
<?php the_excerpt(); ?>
<?php endwhile; ?>
I had this problem when I first started using CF7. What I did was create a new textarea field, and used the “optional” columns and rows, and just kept playing with it until I got it the size I wanted.
(Obviously, delete the old textarea field).
Hope that helps. Your question was a little vague, so I don’t know if I gave you the answer you were looking for.