Hi Jeff,
Do you mean that you want to change color of text in side bar menu? If so, you will need to change 2 classes in /templates/ja_wall/css/template.css file
– For Categories menu: go to line 1504
#sidebar .categories-module li a {
-moz-box-sizing: border-box;
border-radius: 3px;
color: #999999
display: inline-block;
line-height: normal;
max-width: 100px;
overflow: hidden;
padding: 2px 5px;
text-overflow: ellipsis;
text-transform: uppercase;
white-space: nowrap;
}
– With other menus: at line 1442
#sidebar .menu li a {
-moz-box-sizing: border-box;
border-radius: 3px;
color: #999999
display: inline-block;
line-height: normal;
max-width: 100px;
overflow: hidden;
padding: 2px 5px;
text-overflow: ellipsis;
text-transform: uppercase;
white-space: nowrap;
}
Then change to your desired color.
Hope this helps.