try to put into style.css of a child theme or per ‘custom CSS’ plugin:
.meta-cat a { color: green; }
you have not posted enough information for a more precise suggestion; http://codex.wordpress.org/Forum_Welcome#Include_as_much_information_as_possible
that doesnt work .meta-cat a { color: green; }
Looks like you need:
.post-meta .meta-cat a {
color: green;
}
can it have background too? like red background and white font? thx btw that works 🙂
something like “read more” button u can see but its translated to my language “прочитај” , something like that
Try something like this:
color: #FFF;
background: #dd3333 url(img/date-bg.png) repeat-x bottom;
padding: 5px 7px 5px 7px;
font-weight: bold;
font-size: 12px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
Adjust the values for padding until it looks right.
thx mate that helped me alot
.post-meta .meta-cat a {
color: green;
}
it ill be good if i just wanna make em bold
Sorry. I left out a part on my last post. Try something like this:
.post-meta .meta-cat a {
color: #FFF;
background: #dd3333 url(img/date-bg.png) repeat-x bottom;
padding: 5px 7px 5px 7px;
font-weight: bold;
font-size: 12px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
thx very much, u did great job mate 🙂