I used this plugin and placed my adminbar in the dashboard and front end on the bottom, and I am having trouble on figuring out how to make the dropdown menus go up.
Also when the site is viewed in landscape on mobile the adminbar stays on the bottom and on top of the content which is great.
But when I flip the phone normal the admin bar stays in 1 spot when I scroll down. It doesnt stay on the bottom and on top of the content.
I’m trying to fix these annoyances.
https://www.ads-software.com/plugins/stick-admin-bar-to-bottom/
]]>as you know, 3.8 has mobile back-end version. this works great but on mobile, it’s hard to scroll down and click menu.
how can I stop sticking on Back-end. (or back-end on mobile version)?
Thanks,
https://www.ads-software.com/plugins/stick-admin-bar-to-bottom/
]]>In wordpress 3.3.2 this plugin leaves a black bar at the top of the screen, and also shifts absolutely positioned elements with the css, by setting the margin-top of body.admin-bar to -28px.
I fixed this by:
1. Changing lines 5-8 in plugins/stick-admin-bar-to-bottom/css/wordpress-3-3.css as follows:
body.admin-bar {
/*margin-top: -28px;*/
padding-bottom: 28px;
}
2. adding the following code to functions.php:
function remove__admin_bar_bump_cb(){
remove_action('wp_head', '_admin_bar_bump_cb');
}
add_action('admin_bar_init', 'remove__admin_bar_bump_cb');
https://www.ads-software.com/extend/plugins/stick-admin-bar-to-bottom/
]]>Version 1.0 is out there, please update all.
It uses the footer now to call the CSS, should work a lot better. I have zero issues on a vanilla TwentyTen installation.
Please report when you experience any problems. ??
]]>While the plugin works as it says, it leaves a black void at the top. It also covers up anything on the bottom 28px so if you want to see credits that were there, you have to move those up.
https://www.ads-software.com/extend/plugins/stick-admin-bar-to-bottom/
]]>