@jon, try this in your child theme’s css:
#wp-admin-bar {
top:inherit;
bottom:0;
}
you still have to change the drop down menu to rise up though. But it is a start….
Cheers
Meini
#wp-admin-bar ul li ul {
bottom:25px;
}
should to that trick… hth
Meini
hey,
I’ve been trying to move the admin bar also. I got it on the bottom and the menus pop up. However, the 3rd level lists pop up from the admin bar, and not in relation to where your mouse is. Here are some screen shots below…
http://na710n.com/files/2010/06/adminbar1.jpg
http://na710n.com/files/2010/06/adminbar2.jpg
I’ve looked into the “3rd and above level lists” section of adminbar.css but haven’t found anything.
Any ideas?
I have the same problem as well. If someone could explain us how to fix that, i will be very grateful !
Never mind, this was the solution :
body {
padding-top: 25px;
}
#wp-admin-bar {
bottom: 0 !important;
position: fixed !important;
top: auto !important;
}
#wp-admin-bar ul { /* all lists */
bottom: 24px;
}
#wp-admin-bar ul li:hover ul ul, #wp-admin-bar li.sfhover ul li ul {
left: -999em;
bottom: auto;
}