Introduction
BuddyBoss displays a privacy status selector when posting activities, using a default background style. You can customize the background color of this privacy status element with a small CSS snippet to better match your site’s branding or improve visibility. This guide explains how to change the Privacy Status Background Color on the activity post form.
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:
#whats-new-form #bp-activity-privacy-point {
background: #000000 !important;
}
Replace #000000 with any hex color code you prefer.- Click Save Changes
Troubleshooting and FAQs
Q: The background color did not change after saving.
A: Clear your browser cache and any caching plugins, then reload the page.
Q: Can I use a different color format instead of hex?
A: Yes. You may use RGB or RGBA values if preferred.
Q: Will this affect other elements on the activity form?
A: No. This CSS targets only the Privacy Status background element.