Introduction
The Privacy Policy and Terms of Service modals use default styling without a built-in background color option. You can override their backgrounds site-wide by adding a small custom CSS snippet in your Theme Options.
Custom Workaround
- In your WordPress admin, go to BuddyBoss > Theme Options.
- Under Custom Codes, toggle Enable CSS on.
Append the following CSS (replace #000000 with your desired color):
div#terms-modal {
background-color: #000000;
}
div#privacy-modal {
background-color: #000000;
}
- Click Save Changes.
Troubleshooting and FAQs
Q: The modals are still white—why?
A: Ensure you added the CSS to the active child theme via Theme Options > Custom Codes, not the parent theme. Clear any site and browser cache after saving.
Q: I don’t see “Enable CSS” under Theme Options—what now?
A: Your hosting or a security plugin may disable inline CSS edits. Use FTP or your host’s file manager to append the snippet to your child theme’s style.css instead.