My existing CSS section is as follows:
.leftMemberCol
{
width:125px;
vertical-align:top;
padding: 13px;
border-width:0px;
border-collapse:separate;
border-spacing: 10px 10px;
text-align:left;
background-color:#f2f3ea;
}
I have a td section (a left sidebar) for which I want to change the color of all links inside this cell to green.
Is there any way to achieve this using syntax like:
.leftMemberCol.a
{
color:#E3E3CA;
}
Alternatively, do you have any other suggestions aside from having to individually update each page by wrapping the links in another class name?