Last active
April 11, 2017 19:34
-
-
Save jasonbraun/8cc325325a92d94da83f2ffbd98cc80d to your computer and use it in GitHub Desktop.
Custom Login Logo for WordPress
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
<?php | |
//* Login Screen: Change login logo | |
add_action( 'login_head', 'website-name_custom_login_logo' ); | |
function website-name_custom_login_logo() { | |
echo '<style type="text/css"> | |
h1 a { background-image:url('.get_stylesheet_directory_uri().'/images/login.png) !important; background-size: 150px 137px !important; height: 137px !important; width: 150px !important; margin-bottom: 30px !important; padding-bottom: 0 !important; } | |
.login form { margin-top: 10px !important; } | |
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), | |
only screen and (-moz-min-device-pixel-ratio: 1.5), | |
only screen and (-o-min-device-pixel-ratio: 3/2), | |
only screen and (min-device-pixel-ratio: 1.5) { | |
h1 a { background-image:url('.get_stylesheet_directory_uri().'/images/[email protected]) !important; background-size: 150px 137px !important; height: 137px !important; width: 150px !important; } | |
} | |
</style>'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment