Support » Fixing WordPress » Register page background needs to be extended

Viewing 4 replies - 1 through 4 (of 4 total)
  • The file wp-admin.css needs to be edited also – in the style html, body } remove the height: 100%; line (or otherwise modify).

    Note, you will lose this customization on WP update.

    Thread Starter cruthas

    (@cruthas)

    hmm… I wonder if I can add this to my function.php so it won’t get lost in an update.

    Thread Starter cruthas

    (@cruthas)

    yup, just as I suspected:

    function my_login_logo() { ?>
        <style type="text/css">
            body.login div#login h1 a {
                background-image: url(<?php echo get_bloginfo( 'template_directory' ) ?>/images/your-logo-path-in-template-folder);
                padding-bottom: 30px;
            }
            body.login {
    	        background: #FBFBFB;
    	        min-width: 0;
    	        height: 1200px;
            }
        </style>
    Thread Starter cruthas

    (@cruthas)

    Works like a charm. Solved.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Register page background needs to be extended’ is closed to new replies.