Hi there,
I'd like to change the colors of headings (Blog Test Two & Test blog post) and right hand column menu items, for the hover and normal states.
I've tried to target the headings/links with CSS but can't seem to nail it.
It is also possible to place a between each post entry on this page?
Thanks!
Al
between each post entry on this page? Thanks! Al
Hey Allan!
Enter this into your custom css box:
body article.post .post-header h2 a:hover { color: #ffbd3e!important; } body article.post .post-header h2 a { color: #ff3e3e!important; }
and here's for the sidebar menu links:
#sidebar ul li a { color: #ff3e3e!important; } #sidebar ul li a:hover { color: #ffbd3e!important; }
Cheers!
Thanks!