Hi,
I’m trying to restyle newspaper wordpress admin bar like below:-
Full Site Logo… Search (a medium size search bar).. Home option.. Write Option.. My Avatar… My Name(drop down menu) i) Account settings ii) Logout
Though I see this is not possible within newspaper wordpress theme, please could you advise a plugin to tweak admin bar to do the same.
Thanks!
Hello George,
Unfortunately the theme does not control the admin bar. You will have to use a plugin for it. We cannot make any recommendations as we have not tested admin bar plugins, but you can try a few of them out and see which one works best with a bit of trial and error. You can do a quick search for “admin bar” and already you will have a few options to chose from: http://screencast.com/t/ypENYTck7M
Hope you find one that works out for you!
Thank you!
Hi,
You can maybe use this plugin:
https://wordpress.org/plugins/enhanced-admin-bar-with-codex-search/
It allows adding a custom menu to your admin bar:
http://screencast.com/t/4K8c7An8D
Thanks.
-
This reply was modified 10 years by
Bogdan B..
Thank you Bogdan – It helped a lot.
I need a small css help to complete logo alignment in menu bar.
Screenshot:-
http://www.screencast.com/t/j7qUaoEAfErL
steps to reproduce:-
i) Login to http://www.viralbae.com
ii) After login it will be redirecting to homepage
iii) Site Logo is seen in top left corner.
Note: The logo misalignment issue happens in mobile only.
Kindly advice.
Thanks!
Hello,
You can use this custom css to adjust the alignment on the mobile version:
@media(max-width:782px){
#wpadminbar *{
font: 400 13px/32px "Open Sans",sans-serif!important;
}
#wpadminbar li[id^="wp-admin-bar-ub_admin_bar"] a {
padding: 0px 8px!important;
}
}
Thanks.