Hello, I'm very happy with the new WP 3.3, it's lovely.
Thanks to the people who help building it.
Only one little bug i've got.
I've been changing the login screen for a few years now doing this inside the functions.php to include some code inside the <head> of the login page.
function add_viewport_login() {
echo '<meta name="viewport" content="initial-scale=1.0; maximum-scale=1.0; width=device-width;" />';
}
add_action('login_head', 'add_viewport_login');
function custom_login() {
echo '<link rel="stylesheet" type="text/css" href="'.get_bloginfo('template_directory').'/css/custom-login.css" />';
}
add_action('login_head', 'custom_login');
And by (over) writing the default WP styles I can change the inlog layout to my own theme style.
Only this doesn't work anymore how can i get this done at the moment?
Thank you.