I am developing a blog using twenty eleven wordpress theme.I want to display the thumbnail image of the post left side to the post content.I have used the set featured Image in the edit post section but not successfull yet to display the thumbnail Image.
Waiting for the help.
Thanks In adavce
Open Twenty Eleven content.php
Find this code:
Change it to:
You are done…
You can try the following:
set a suitable thumbnail size:
http://codex.wordpress.org/Function_Reference/add_image_size
add to content.php, for instance before or you can add it in the body before the content, whatever works for you
adapt the style.css to allow the header and post meta data to wrap round the image, some ideas you can use
.home .attachment-post-thumbnail { float: left; margin-right: 4%; margin-top: 15px; }
.home h1.entry-title { clear: none; }
.home .entry-meta { clear: none; }
.home .entry-content { clear: both; }
Hope that helps!