• Hi,

    I am having problems with users when they try to do a password reset. They are sent to the reset password form but it is blank and you cant interact with it. Same then when I try to login through wp-admin.

    Please see this vid for a clearer understanding of my issue: https://www.screencast.com/t/D8ajijr4ko7P

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • You have a responsive design issue on the login page.

    add this code in functions.php, hopefully it will solve the issue.

    /**
     * Fix the login design issue.
     */
    function custom_wp_fix_login_page() {
    	?>
    	<style type="text/css">
    		@media (min-width: 300px){
    			#login {
    				height:100%;
    			}
    		}
    	</style>
    	<?php
    }
    add_action( 'login_head', 'custom_wp_fix_login_page', 99 );
Viewing 1 replies (of 1 total)
  • The topic ‘Login and password reset form blanl’ is closed to new replies.