whenever i post a picture on wodpress blog page (i m using responsive theme) when i put a image on featured image it dosent show full it kind of shows half for example i put a pic of a bodyybuilder only his body was showing when i published the blog with the featured image does anyone know how to fix this?
Have you tried cropping the image to fit the thumbnails dimensions? Not all themes automatically crop large images to fit the preview.
If cropping doesn't work, install the 'Regenerate Thumbnails' plugin by http://www.viper007bond.com/ and run it.
You need to edit your stylesheet. Go to appearance >> editor >> style.css or stylesheet.css Then find the area where it designates a default size for featured images and change it to a bigger size
no it still dosent work when i change it the full image becomes big...is there any other plugin or anything?
Do you have see the add_image_size function on functions.php? did it call to crop function? Try to matching with this WordPress codex... http://codex.wordpress.org/Function_Reference/add_image_size
You need to set the featured images set_post_thumbnail_size( 100, 50, true ); // 50 pixels wide by 50 pixels tall, hard crop mode