Support Forums for LiveMesh Themes & Plugins › Forums › Appdev Theme Support › Resize Featured Image › Reply To: Resize Featured Image
December 25, 2013 at 4:36 am
#3509
Raghavendra
Moderator
Something along these lines in the custom/custom.css file or Custom CSS tab in theme options panel can help (will work with thumbnail images only – not videos or sliders) –
.default-list .image-area { display: block; margin: 0; width: 50%; float: left; } .default-list .entry-text-wrap { clear: none; width: 40%; float: left; } #content .hentry .entry-summary { margin: 0; padding-left: 8%; } /* Smaller Tablets and smartphones */ @media only screen and (max-width: 767px) { #content .image-area, .default-list .entry-text-wrap { float: none; width: 100%; } #content .hentry .entry-summary { padding: 0; } }