First, you know you misspelled “height”, right?
To override css, you can use the “!important” operator. So you’d use:
html,body{height: auto !important;}
Also, you are doing something like this in your functions.php, right?
function changeLoginCSS() { ?>
<style type="text/css">
html,body{height: auto !important;}
</style>
<?php }
add_action( 'login_enqueue_scripts', 'changeLoginCSS' );
Related Posts:
- How to add a custom CSS class to core blocks in Gutenberg editor?
- Editing ‘Password Reset’ E-mail
- Adding a class to the body_class function
- Change “You are now logged out” text
- Removing labels and tag on WordPress’s default login form
- Add classname to the_category() function?
- Changing Gutenberg / WP block editor width only on pages, not posts or other taxonomies
- Customize user account activation message
- How do we check if the user is logging in or registering?
- How to remove google font in WordPress for only single page?
- Where is this inline CSS code [closed]
- add filter login_redirect does not contain original requested redirect
- How to center oEmbedded content
- Change username before login
- Custom Login Errors and variables I can use
- Remove CSS & JS files from WordPress Main Page For Increase Pagespeed?
- Correct method of redirecting user login
- Header image automatically changes depending on season
- Filters on Login Page
- How can I change the email that is inside the default email texts of wordpress?
- How do I hook my function to run only after submitting login form
- How to redirect non-logged in users to login with post_password_required()
- Filter page title (displayed in browser tab) of wp-login
- How to redirect a unique link based on login status
- Add an attribute to the root from functions.php with add_filter
- login_url filter creates permanent wp-admin -> wp-login redirection loop
- Wrap WordPress Login Form in custom Div
- Login logout below menu bar
- Publish button inside custom field group
- Hook into ‘when user logs in’ [persistent login]
- This code works, but breaks the media uploader. How do I integrate it in a way that won’t?
- Background color and background image below element in Contact Form 7 – error tip [closed]
- Change password reqts with NO plugin without breaking resetpass link?
- ‘Problem’ with login_redirect filter – why does it lose the redirect_to parameter
- wp reset password page – head inline script
- Disable emojicons introduced with WP 4.2
- How to remove a filter that is an anonymous object?
- WordPress hooks/filters insert before content or after title
- How to add defer=”defer” tag in plugin javascripts?
- add_action(), add_filter() before or after function
- apply_filters(‘the_content’, $content) vs do_shortcode($content)
- How do filters and hooks really work in PHP
- Trouble understanding apply_filters()
- What is the very earliest action hook you can call?
- How would one modify the filtering Gutenberg applies to pasted content?
- How can I modify the WordPress default widget output?
- Add custom options to the wplink dialog
- Remove classes from body_class
- what is __return_false in filters
- Explanation for apply_filters function and its variables
- Gutenberg: Is there a way to know if current block is inside InnerBlocks?
- How to reorder billing fields in WooCommerce Checkout template? [closed]
- Insert HTML just after tag
- the_content and is_main_query
- Changing WooCommerce Display Price Based on User Role & Category [closed]
- How to show page content in feed?
- wp_headers vs send_headers. When to use each?
- How to add sub-menu to a menu generated by wp_nav_menu by using plugin
- Filter any HTTP request URI?
- How to Pass External Variables to Filters/Actions
- How to filter users on admin users page by custom meta field?
- Filter by one custom field, order by another?
- Enqueue a stylesheet for login page and make it appear in head element
- Not able to change wp_title using add_filter
- How to appending to the_content using add_filter with custom post type?
- Query WP REST API v2 by multiple meta keys
- No filter of code on switch from html to visual editor, how?
- Sanitize and data validation with apply_filters() function
- How to modify posts_where filter only for the search query
- How to hook a filter to catch get_post_meta when alternate a custom field output?
- How to get shortcode’s input values inside a filter?
- Removing Image and Caption Dimension Attributes
- How to wrap oEmbed-embedded video in DIV tags inside the_content?
- How to bulk delete all users with no posts?
- How many filter/action hooks are healthy?
- WordPress 3.9 – Trouble Editing TinyMCE 4.0
- Changing JPEG compression depending on image size
- How to add filter with 2 args?
- Why is javascript allowed in my post content?
- How to use update_{$meta_type}_metadata filter to modify meta value
- How to wrap an element around an iframe or embed in content automatically?
- Filter specific shortcode output?
- WordPress Internal @ Mentions
- How to add headers to outgoing email?
- Earliest hook to reliably get $post/$posts
- Insert new element to array with add_filter
- LESS CSS enqueue_style with add_filter to change rel attribute
- Is it possible to filter comments in a post so a user can only see the comments they have written?
- How to pass/get data to/from the WooCommerce data-product_variations object?
- Remove Editor From Homepage
- How to modify Contact Form 7 Success/Error Response Output [closed]
- Where to hook into post content?
- What does (10, 2) mean when used with add_filter
- Filter translations (gettext strings) on specific admin pages
- Filter username field on registration for profanity and unwanted words
- Clarification on filters and hooks
- Assign a Class to the Current “Tag” for Formatting
- remove_filter( ‘the_content’, ‘wpautop’ ); only for certain post types
- At what priority does add_filter overwrite core functions?
- Valid characters for actions, hooks and filters