Action Bar link color and Author Information
- How do I change the link color in action bar(White as link and Grey on hover)
- How to replace actual author name to "admin" for Portfolio and Blog posts instead of using username ? / If not possible then how to hide author info ?
Comments
1. To change link color in Action Bar, you need to use the following css:
#Action_bar a { color: #000 !important; }2. It is not possible to replace the current name with admin but you can remove it if you want with the following css:#Action_bar a:hover { color: #000 !important; }
.post-meta .author-date .author { display: none !important; }