Home › Forums › Trusted › Featured Post Image › Reply To: Featured Post Image
February 16, 2020 at 12:00 pm
#9325
Andy
Keymaster
The following is custom CSS to be added to Additional CSS in the customizer.
To center the image use this:
.single-entry-content .wp-post-image {
clear: both;
display: block;
margin: 0 auto 1.5em auto;
}
To align it left with the text content wrapped from beside the image:
.single-entry-content .wp-post-image {
float: left;
margin: 0 1.5em 1.5em 0;
}