@Marius – Here is what I am talking about:
You can see that the font color (which is white) doesn’t show through. Where can I change that color to black?
I am having each category be a different color to help my viewers tell which category they are looking at.
Hi,
Theme doesn’t have an option to change the text color of a specific category tag. You can try this custom css in Theme Panel > Custom Css and set a general color for categories – http://screencast.com/t/AqiJSvTwd
.td-category a {
color: #222222;
}
Thanks!
Hi,
The problem is more deeper than that, because you are there on a post page(single) and if you have more categories will change the color for all categories. Is needed the categories box to have a unique selector to catch only the desired one.
You need to edit like here to output the category slug as selector:
,'cat_slug' => $td_parent_cat_obj->slug
,'cat_slug' => $category->slug
td-' . $td_cat_parms['cat_slug'] . '
http://screencast.com/t/zuhr7AwhCFO
Then add the selector for the categories like here:
Inspect your category and copy the selector http://screencast.com/t/laSgnyAsph and add it in CSS
.td-tagdiv-travel a {
color:#000;
}
