Re: Admin bar mouseover issue
if you’ve bpdev plugins installed you can do that without touching the code:
<?php
function register_my_css() {
bpdev_theme_register_style(
‘my-css-hack’,
‘My Css hack’,
‘my_css’,
‘on’,
‘on’
);
}
function my_css() {
?>
#wp-admin-bar ul {
height: auto !important;
}
<?php
}
?>
and save it in a new file under /mu-plugins
So when bp will update that, you can switch this thing off via the WP Admin-> BPDEV Admin -> BPDEV Theme