Created
October 27, 2014 16:46
-
-
Save frankschrijvers/45f7d41ba9aa359adfb9 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// Replace WP login logo with your own | |
add_action('login_head', 'wpstudio_custom_login_logo'); | |
function wpstudio_custom_login_logo() { | |
echo '<style type="text/css"> | |
h1 a { background-image:url('.get_stylesheet_directory_uri().'/images/login.png) !important; | |
background-size: 220px 50px !important; | |
height: 50px !important; | |
width: 220px !important; | |
margin-bottom: 0 !important; | |
padding-bottom: 0 !important; | |
} | |
.login form { | |
margin-top: 10px !important; | |
} | |
body { | |
//background: #283035; | |
} | |
</style>'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment