Introduction
BuddyBoss displays the featured image on single post pages with padding and layout constraints that can prevent it from appearing at full size. You can adjust this behavior by adding a small CSS snippet to your theme settings so the featured image displays at its full dimensions and aligns more cleanly with the post content. This guide explains how to show a full-size featured image on single post pages.
Custom Workaround
Before proceeding, make sure you have a complete site backup.
- Go to BuddyBoss > Theme Options in your WordPress admin dashboard
- Open the Custom Codes section
- Enable CSS
- Add the following CSS code:
body.single-post .entry-content-wrap .entry-img img {
position: relative;
}
body.single-post .entry-content-wrap .entry-img,
body.single .post.full-fi figure.entry-img,
body.single .post.full-fi-invert figure.entry-img {
padding-top: 0;
}- Click Save Changes
Troubleshooting and FAQs
Q: The featured image still doesn’t appear full width.
A: Check that your post actually has a featured image set and clear any caching plugins.
Q: Will this affect archive?
A: No, this CSS only applies to single post pages.