• Resolved pal8

    (@pal8)


    How come wp_head placed in head affect body, adds space to body with css margin and padding set to 0? Really strange.

Viewing 1 replies (of 1 total)
  • Thread Starter pal8

    (@pal8)

    Fixed it with

    add_action('get_header', 'wp_head_fix');
    
    function wp_head_fix(){
      //remove top margin
      remove_action('wp_head', '_admin_bar_bump_cb');
    }
Viewing 1 replies (of 1 total)

The topic ‘wp_head adds space’ is closed to new replies.