I have a problem by finding a code that makes the topic/heading on posts to a spesific color.
I use theme Easel, and topic is dark red (same as "post author" and "post category").
How can I change this color??
I have a problem by finding a code that makes the topic/heading on posts to a spesific color.
I use theme Easel, and topic is dark red (same as "post author" and "post category").
How can I change this color??
What CSS have you tried?
You're looking for
h2.post-title {}
h2.page-title {}
h2.post-title a {}
so
/* post title CSS */
h2.post-title { color: #b00; } /* not a link */
h2.post-title a:link, h2.post-title a:visited { color: #b00; } /* a link */
h2.post-title a:hover { color: #f00; } /* hover on the link */
should change the link colors specifically for the post titles
..however the link colors are the same default wise as the rest of the links on the site, that's why if you just want to change those specific colors you target them
Yes, it worked! Thanks guys! :-)))
You must log in to post.