Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #461798

    Hej Genius’

    Wondering if any of you might know how I move the text links below the login page form into the form box itself. See image demonstrating what I mean. The problem is that when you have a background image the important links get lost and need to be seen! It is easily seen here because the picture at that point is dark but when it becomes responsive for smaller devices the background colours will change and the text is hard to see. Clients have many differing background images so this is my best way to solve the problem

    http://nytmantra.dk/wp-content/uploads/2015/06/login-page.png

    Thanks guys :-)

    #461887

    Hi Annemarie!

    Pleaes try adding following code to Functions.php file in Appearance > Editor

    function login_text_position() { ?>
        <style type="text/css">
            p#nav {
                position: relative; top: -20px; 
            }
        </style>
    <?php }
    add_action( 'login_enqueue_scripts', 'login_text_position' );

    If that does not help, please post the link to your website

    Best regards,
    Yigit

    #462622

    PERFECT! Had to adjust the -20px to -60px to position it a little higher up but the script worked perfectly. Thanks Yigit!!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Login page – move text into login form box’ is closed to new replies.