BuddyBoss Home – Web Support Forums Themes Boss. theme changing font on log in screen

Viewing 2 posts - 1 through 2 (of 2 total)
  • Question

    #59938
    @nickabarca

    how do you change the font of the site name on the log in screen. currently its in a cursive format.

    Answers

    #60041

    Anonymous
    @

    Hi @nickabarca, Plesae add this function in your child theme’s function.php and replace the font with yours

    
    add_action('login_head','add_css',99999);
    function add_css(){
    echo '<style>
    #login h1 a {
        font-family: raleway;
    }
    </style>';
    }
    

    Regards

Viewing 2 posts - 1 through 2 (of 2 total)
  • The question ‘changing font on log in screen’ is closed to new replies.