Introduction
The BuddyBoss Platform doesn’t offer a built-in setting to tweak spacing between your Activity feed and sidebars. A small CSS snippet lets you control the left/right padding so your layout looks balanced.
Custom Workaround
- In your WordPress admin, navigate to BuddyBoss > Theme Options.
- Under Custom Codes, enable CSS.
Append the following:
.directory.activity #primary {
padding-left: 30px;
padding-right: 30px;
}
- Click Save Changes.
Troubleshooting and FAQs
Q: I don’t see any change—what should I do?
A: Clear any caching (page, object, or CDN) and reload the Activity page to apply the new padding..
Q: How can I revert back to the default spacing?
A: Remove or comment out the CSS you added in BuddyBoss > Theme Options > Custom Codes and save; the original margins will return.