How to remove html { margin-top: 28px !important; } from wordpress header
When you use wp_head() function in header.php at the end of the section.After using it automatically css apply margin-top 28px. So how to remove that margin top. It’s very easy you have to add in function.php file this code :-
add_action('get_header', 'my_filter_head');
function my_filter_head() {
remove_action('wp_head', '_admin_bar_bump_cb');
}
Written by pramod pandey
Related protips
1 Response
I believe this margin is because you have admin toolbar enabled in /wp-admin/profile.php
http://i.imgur.com/QkgOUJl.png
over 1 year ago
·
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Worpress
Authors
pramodpandey05
1.285K
Related Tags
#worpress
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#