Introduction
By default, BuddyBoss does not provide an option to change the size of the “Create an Account” text on the login or registration page. You can achieve this by adding a small custom function to your active theme. This guide explains how you can make the “Create an Account” text bigger.
Custom Workaround
Before proceeding, make sure you have a complete site backup.
- Go to Appearance > Theme Editor in your WordPress admin dashboard.
- Under Select theme to edit, choose your active theme (preferably BuddyBoss Child Theme), then click Select.
- From the Theme Files list, click Theme Functions (functions.php).
- Paste the following code just before the closing PHP tag (?>):
function my_login_logo() { ?>
<style type=”text/css”>
.login-heading span {
font-size: 20px; /* Adjust this value to make text bigger or smaller */
}
</style>
<?php }
add_action( ‘login_enqueue_scripts’, ‘my_login_logo’ );
- Click Update File to save your changes.
Troubleshooting and FAQs
Q: The text size didn’t change.
A: Clear your browser cache or any caching plugin on your site, then reload the login page.
Q: Can I make the text even bigger?
A: Yes. Increase the font-size value in the CSS code. For example, font-size: 24px;.
Q: Will this affect other text on the login page?
A: No. The CSS targets only the “Create an Account” span inside .login-heading.
Q: Can I revert this change easily?
A: Yes. Remove the code from your functions.php file and save.
Q: Who can I contact for further assistance?
A: Please review the BuddyBoss Support Policy or consult a developer for custom work.