BuddyBoss Home – Web Support Forums Themes Boss. theme Login Page Background Image

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

    #63193
    @hjerryw

    Hello,
    I would like to add a background image to the login page. I have tired a few plugins, but none of them works. Someone says it can be done by add some css. I also tired it, but not working. Or am I doing it wrong? Waiting for helps.
    Thank you,
    Jiawei

    Answers

    #63239
    @anve

    Hi @hjerryw,

    Try adding following code in Theme’s functions.php

    
    function my_login_logo() { ?>
        <style type="text/css">
            "ADD CSS CODE FOR APPLYING BACKGROUND IMAGE"
        </style>
    <?php }
    add_action( 'login_enqueue_scripts', 'my_login_logo' );
    

    This will add this css in head of login page.

    Regards
    Anve

Viewing 2 posts - 1 through 2 (of 2 total)
  • The question ‘Login Page Background Image’ is closed to new replies.