Last active
February 26, 2016 10:43
-
-
Save teolopez/5891693 to your computer and use it in GitHub Desktop.
Custom WordPress Login Form
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ------------------------------------------------------ | |
// custom login style for theme for site url/wp-login.php | |
// ------------------------------------------------------ | |
function childtheme_custom_login() { | |
echo '<link rel="stylesheet" type="text/css" href="' . get_bloginfo('stylesheet_directory') . '/customlogin.css" />'; | |
} | |
add_action('login_head', 'childtheme_custom_login'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* WordPress Login Form Styles | |
Create a new css file and name it customlogin.css and save to your theme folder. | |
*/ | |
body.login {} | |
body.login div#login {} | |
/* Logo Area style */ | |
body.login div#login h1 {} | |
body.login div#login h1 a {} | |
/* Form Area style */ | |
body.login div#login form#loginform {} | |
body.login div#login form#loginform p {} | |
body.login div#login form#loginform p label {} | |
body.login div#login form#loginform input {} | |
body.login div#login form#loginform input#user_login {} | |
body.login div#login form#loginform input#user_pass {} | |
body.login div#login form#loginform p.forgetmenot {} | |
body.login div#login form#loginform p.forgetmenot input#rememberme {} | |
/* Login Button style */ | |
body.login div#login form#loginform p.submit {} | |
body.login div#login form#loginform p.submit input#wp-submit {} | |
/* Register & Lost your Password Area style */ | |
body.login div#login p#nav {} | |
body.login div#login p#nav a {} | |
/* Back to Website Area style */ | |
body.login div#login p#backtoblog {} | |
body.login div#login p#backtoblog a {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks!