Eighties Theme: Help with Customizing Colors
-
When a post is clicked on, there are buttons below the post that link to older/newer posts. I am trying to figure out how to change these buttons from pink to a greenish color (also, these pink buttons enlarge when moused over). Similarly, tags turn pink if moused over; I would like these to turn a greenish color as well. Thanks for the help!
The blog I need help with is: (visible only to logged in users)
-
Have you tried the CSS I provided on your other thread on this same topic.
I just tested that CSS again and it works. Could you please try and see how it goes.
-
I did use the CSS that you provided on the previous topic. These changes did help with text selection, etc. However, the former code did not change the buttons or tags that I’ve mentioned in this post. I appreciate your expertise!
-
.paging-navigation .nav-previous a, .post-navigation .nav-previous a, .comment-navigation .nav-previous a, .paging-navigation .nav-next a, .post-navigation .nav-next a, .comment-navigation .nav-next a { background: none repeat scroll 0 0 #3f7854; } .entry-meta-tags a:hover { background: #99cc99; }You’ll have to play around with it a bit for it to be exactly how you want if you want to customize it further, but that is the relevant section of code.
-
Lets’ try that again, shall we:
.paging-navigation .nav-previous a, .post-navigation .nav-previous a, .comment-navigation .nav-previous a, .paging-navigation .nav-next a, .post-navigation .nav-next a, .comment-navigation .nav-next a { background-color: #3f7854; } .entry-meta-tags a:hover { background-color: #99cc99; }You will also have to change the different states for the buttons e.g. hover, active, and visited. You should be able to find that back in the CSS.
Feel free to chime back if your getting stuck.
-
- The topic ‘Eighties Theme: Help with Customizing Colors’ is closed to new replies.