php - Adjusting toolbar when viewing site - WordPress -
i have few questions on how adjust top toolbar in wordpress when logged in. firstly, how edit site name section has drop down take dashboard when viewing site? secondly, how edit mobile versions of toolbars?
figured out trying accomplish, remove_node function @ http://codex.wordpress.org/remove_node
this allows me select navigations don't want , remove them toolbar.
1) dashboard->settings->site title
2) can find admin bar css visiting following link: http://your.wordpress-site.com/wp-includes/css/admin-bar.css. replace "your.wordpress-site.com" domain , path wordpress installation view css.
the following media queries used mobile display:
@media screen , (max-width: 782px){ ... } @media screen , (max-width: 600px){ ... } if want adjust how displays in theme, not overwrite file in wp-includes. override styles own using more specific selectors in either style.css or separate stylesheet.
Comments
Post a Comment