Theme Custom CSS

/*————————————- Branding and Logo Styles ————————————-*/ .site-title img { padding: 14px 0; height: 100%; } .site-header .site-title, #site-logo .site-title img.bb-logo { height: 100%; } .mobile-logo-wrapper { height: 100%; } .site-branding { padding-left: 0 !important; } /*————————————- Menu and Navigation Styles…Continue reading

Custom Login Styles

/** * Add custom CSS styles for the WordPress login page. * – Styles include a custom registration button and login field adjustments. */ function add_custom_login_styles() { echo ‘ ‘; } add_action(‘login_head’, ‘add_custom_login_styles’); /** * Disable the language dropdown on…Continue reading

Child Theme Translation Loader

function buddyboss_theme_child_languages() { load_theme_textdomain(‘buddyboss-theme’, get_stylesheet_directory() . ‘/languages’); } add_action(‘after_setup_theme’, ‘buddyboss_theme_child_languages’);Continue reading