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.
Driftless1
Member
Posted 1 year ago #
Hi runfast,
You can change it with some custom CSS work, or use a plugin like one of these:
http://wordpress.org/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');
Thanks for the help. I'll try the plugin first. And create some CSS if I want to customize it more.