• I find that the font and boxes for the WordPress login and password are very large. I don’t need to change the graphics, just make everything smaller.

    I read there are some problems when the software is upgraded and any modifications might be wiped out.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi runfast,

    You can change it with some custom CSS work, or use a plugin like one of these:

    https://www.ads-software.com/extend/plugins/search.php?q=custom+login

    I’ve tried various one with different success.

    Enjoy

    runfast,

    Add the following code to your theme’s function.php file and change or add the CSS to mod the login screen. This way you won’t need to redo the mod every time you upgrade WordPress.

    function my_custom_login_logo() {
      echo '
      <style type="text/css">
       PUT YOUR CSS HERE
      </style>';
      }
      add_action('login_head', 'my_custom_login_logo');
    Thread Starter runfast

    (@runfast)

    Thanks for the help. I’ll try the plugin first. And create some CSS if I want to customize it more.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Shrink WordPress login page style’ is closed to new replies.