@mikey3d
11 years, 7 months ago
I just upgraded BP 1.7 and the buddybar background color is black overlap my background yellow. But when I moved the browser scrollbar down I can see my background is there. I try to eliminate it use this codes:
function my_deregister_styles() {
wp_deregister_style( ‘admin-bar-css’ );
}
It didn’t work. How could I fix it?
Did anyone notice the difference background color on buddybar after upgraded BP 1.7? I use the child theme.
@aces
I had a similar problem when I upgraded yesterday.
Does this in your functions.php or bp-custom.php help?
`add_action(‘get_header’, ‘my_filter_head’);
function my_filter_head() { remove_action(‘wp_head’, ‘_admin_bar_bump_cb’); }`
see: https://wordpress.org/support/topic/31-update-causing-28px-top-spacing-in-html-body#post-2405350
Why it wasn’t a problem before is another question….
@aces – Thanks, it works with functions.php. I have trying to figure it out, itโs pretty impossible. ๐
It took me ages. I could see the css that was causing the issue, but not how it got there…