How do I add the preview image to the right of list layout – except (title, meta information and excerpt only) option? or How do you get the image on the left and the title, meta and except on the right? I am really not picky I just need to match the layout for a site.
Hey isynergy,
Thank you for the inquiry.
This is possible, but you have to directly modify the /enfold/includes/loop-index.php file and add this code around line 504:
$featured_image = get_the_post_thumbnail($the_id, 'thumbnail', array('class' => 'read-more-thumbnail'));
echo '<div class="featured-image-container">' . $featured_image . '</div>';
Above this code:
echo $close_header;
Then, add this css code to move the image to the right.
.featured-image-container {
float: right;
}
Best regards,
Ismael3