I need to show the full image instead of the cropped image on the “Accolades” category page. But by the way, I’m not sure there isn’t a much better way to implement category pages as mine can’t be edited by PRO.
Hi Arthur,
Thank you for writing in, first please find and remove this custom CSS block on your Theme Options > CSS
a.entry-thumb {
display: none;
transform: scale(0.25, 0.25)!important;
padding: 130% 100% 100% 100%;
}
This is causing the posts featured images not to show up.
Then add this custom CSS instead, this will show the entirety of the featured image.
a.entry-thumb {
background-size: contain;
}
Yes, category (archive) pages cant be edited in any page builder/editor. You can try the Masonry style though, that is under Theme Options > Blog
Hope it helps,
Cheers!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.