Re: Buddypress 1.2.6 adds extra padding-top
@chouf1 – yes, I know where the adminbar.css file is. Coda is my friend
The question was, why is adminbar.css being included in other themes (even none child ones) on a multisite network? What’s injecting it, and how do we turn it off.
e.g. My theme doesn’t explicitly link to adminbar.css, here’s the snippet from the header.php:
`
<link rel="stylesheet" type="text/css" media="all" href="” />
<link rel="pingback" href="” />
<?php
if ( is_singular() && get_option( ‘thread_comments’ ) )
wp_enqueue_script( ‘comment-reply’ );
wp_head();
`
No explicit inclusion of adminbar.css!
But, here’s what actually gets rendered in the browser:
`
`
The unwanted link to adminbar.css has been injected.
I assume it must be something in wp-head() doing it – is there a hook to turn it off?