Using Renew Stack, how can I change the featured image to appear smaller and to the left of the post summary instead of large and over the top of post summary on the post landing page?
Hi There,
Thanks for writing in! Can you please try adding the following CSS rules into your Theme Options > Global CSS area and see if that helps.
For the Blog Index page:
.blog .entry-featured {
float: left;
width: 40%;
margin-right: 1%;
}
For the single blog posts:
.single-post .entry-featured {
float: left;
width: 40%;
margin-right: 1%;
}
Hope that helps.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.