when i open any post then 1st image show my featured image. i want to increase this size . see it or . i already try to increase from single.php to change this code
<p><img src="<?php echo get_template_directory_uri(); ?>/images/thumbnails/thumbnail-leadimg.jpg" width="610" height="320" alt="<?php the_title_attribute(); ?>" /></p>
but it’s not working .
my orginal code
<p><img src="<?php echo get_template_directory_uri(); ?>/images/thumbnails/thumbnail-leadimg.jpg" width="610" height="225" alt="<?php the_title_attribute(); ?>" /></p>
i don’t understand how i can change it. my site http://www.dewdropzone.com .
It’s probably because the original image is not big enough.
You can make the image display bigger via CSS :
You can try something like this:
This part in particular will control the size of your thumbnail regardless of the size of the image:
And the it is wrapped in anchor (link) tags so that if the person wants to view the original image size all they have to do is click on it to enlarge it and view it at full size.
You can also standardize your featured image size via your functions.php file. Just add this to your functions.php:
This will standardize the size of the featured image thumbnail size rather than putting the sizing attribute in your theme template files.
If you have changed the size of your thumbnails via set_post_thumbnail_size() the new thumbnail size applies to new uploaded images only. If you want to see the effect with existing images you need to regenerate all thumbnails. There is a plugin for this http://wordpress.org/extend/plugins/regenerate-thumbnails/