Make featured images thumbnails show up in corners

I have created CSS code for you to make your featured images show up in the corners of Blog post thumbnail feed. Just add an additional CSS code to your WordPress theme (Apperance –> Custom CSS) /* featured image left of content on blogs page */ [class=”attachment-full wp-post-image”] { height:40%; max-width:40%; float: left; margin-right:20px; padding-right: … Read more

How to make featured images show up on the left side from content in the WordPress blog page

It’s actually pretty simple, you just need to add custom CSS for featured images. Trust me, it’s not as scary as it sounds. This piece of code will do the thing: [class=”attachment-full wp-post-image”] { height:50%; max-width:50%; float: left; margin-right:20px; padding-right: 20px; } Of course in your case the class might be different, depending on your … Read more