matthijs166
9/12/2017 - 9:46 PM

custom login screen

//custom login
function my_custom_login() {
	?>
	<style media="screen">
		body.login {
		  background-image: url(" <?php echo get_template_directory_uri(); ?>/img/login/basalt_background.jpg");
		  background-repeat: no-repeat;
		  background-attachment: fixed;
		  background-position: center;
		}

		.login h1 a {
		  background-image: url(" <?php echo get_template_directory_uri(); ?>/img/login/logo_type.png");
		  width: 200px;
		  background-size: contain;
		  background-position: center;
		}
	</style>

	<?php
}
add_action('login_head', 'my_custom_login');