Introduction
Changing the footer menu font to upper case can enhance visual consistency and improve readability across your site’s footer navigation. While the BuddyBoss Theme does not include a built-in option for this, you can easily apply the change using a simple CSS rule.
Custom Workaround
To change the footer menu font to title case:
- In your WordPress Dashboard, go to BuddyBoss > Theme Options.
- Scroll to the Custom Codes section and toggle Enable CSS.
Append the following CSS code:
.bb-footer .footer-menu a {
text-transform: uppercase;
}
- Click Save Changes.
Troubleshooting and FAQs
Q: The footer menu font didn’t change—what should I check?
A: Clear your site and browser cache. Also ensure that the CSS was saved correctly and that no other rules are overriding it.
Q: Will this affect other menus?
A: No. This CSS only targets the links in the footer menu area.