Hey @consultants,
I’m glad to hear you like the theme!
You can try this CSS:
To align the entry media image on single posts to the right, use this:
.single-post .entry-media {
display: flex;
}
.single-post .entry-media img {
margin: 0 0 0 auto;
}
To align it to the left, use this instead:
.single-post .entry-media {
display: flex;
}
.single-post .entry-media img {
margin: 0 auto 0 0;
}
You can add the code into the Additional CSS field in Appearance ? Customize.
Thanks!