Skip to content

Instantly share code, notes, and snippets.

@jfeliweb
Created July 8, 2015 21:01
Show Gist options
  • Select an option

  • Save jfeliweb/69d85cdbcf014688c845 to your computer and use it in GitHub Desktop.

Select an option

Save jfeliweb/69d85cdbcf014688c845 to your computer and use it in GitHub Desktop.
Move the admin bar to the left side like a sidebar.
/** Turn it on its side (sidebar) **/
/* WordPress Admin Bar Styles */
#wpadminbar {
width:120px;
min-width:120px;
height:100%;
}
#wpadminbar ul li {
width:100%;
}
#wpadminbar .quicklinks > ul > li > a {
border-width:0 0 1px 0;
}
#wpadminbar .quicklinks li#wp-admin-bar-my-account-with-avatar ul,
div#wpadminbar ul li.menupop ul {
z-index:1000;
margin-top:-28px;
left:114px;
}
#wpadminbar .quicklinks .menupop ul {
border-top:1px solid #DFDFDF;
}
#wpadminbar div#adminbarsearch-wrap {
display:none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment