Introduction
Adjusting the font size of the username in the activity feed can improve readability and better match your site’s design. While BuddyBoss doesn’t offer a built-in setting for this, a small CSS snippet lets you customize these elements quickly.
Custom Workaround
- In your WordPress admin, go to BuddyBoss > Theme Options
- Under Custom Codes, enable CSS
Append the following CSS:
.activity .activity-header p a {
font-size: 16px;
}
- Click Save Changes
Troubleshooting and FAQs
Q: My changes didn’t appear—what should I do?
A: Clear any site- or plugin-level cache, then reload the activity page to ensure the new CSS takes effect.
Q: Can I use different units like rem or em instead of px?
A: Yes. Replace px with your preferred CSS unit in the snippet above.
Q: Will this CSS affect other parts of the site?
A: No. These selectors specifically target only the username and date links within the activity header.