Hi,
I was searching the forum for a solution to an issue where the blog post featured images were far too big, and I was looking to reduce their size.
I found the below CSS, which reduces the amount of screen that the posts take up, which was a good solution.
But now it appears that the CSS has affected the blog page itself, which is not what I’m after. Would you know how to keep the blog page the normal breadth, but have the posts restricted in size?
@media (min-width: 1024px) {
.post, .x-comments-area {
max-width: 60% !important;
margin-left: auto !important;
margin-right: auto !important;
}
}
Thanks a million.