Forums
Forums / Theme: Sinatra / change featured image alignment
(@consultants)
5 years, 2 months ago
Thank you for building a lovely theme!
Is it possible to change the alignment of the featured image in blog posts? And if so, how?
Thank you!
(@brankoconjic)
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!
The topic ‘change featured image alignment’ is closed to new replies.