您需要修改cssposition:fixed
到position:absolute
对于#wpadminbar
:
#wpadminbar {
position: absolute;
}
您可以在
function.php
//hook the header output to make the BuddyBar fix and scroll with the page
add_action(\'wp_head\', \'azizur_buddybar_scrolled\');
function azizur_buddybar_scrolled() {
echo \'<style type="text/css">#wpadminbar {position: absolute;}</style>\';
}