Introduction
If your Sign In link on the registration page appears in lowercase and you’d like it to display with an initial capital letter, a brief CSS tweak can achieve this without modifying theme files.
Custom Workaround
- Go to BuddyBoss > Theme Options
- Under Custom Codes, Enable CSS
Append the following snippet:
.registration .entry-header a {
text-transform: capitalize;
}
- Save Changes
Troubleshooting and FAQs
Q: The link text didn’t change—what should I check?
A: Clear your site and browser caches (and CDN if used) so the new CSS takes effect.
Q: Will this affect other links?
A: No. This rule targets only the .registration .entry-header a selector on the registration page.
Q: How do I revert this change?
A: Remove or comment out the CSS snippet from Custom Codes and save your settings.