Looking at the Actinic.css, many of the classes have variables tied to them.
I've pasted some examples below, with the variables in blue.
Can anyone tell me where i should be looking in order to alter the value of these variables?
a.product_section:visited {
color : <actinic:variable name="VLinkColor" />;
text-decoration : none;
}
a.product_section:link {
color : <actinic:variable name="LinkColor" />;
text-decoration : none;
}
a.product_section:active {
color : <actinic:variable name="ALinkColor" />;
text-decoration : none;
}
a.product_section:hover {
color : <actinic:variable name="HLinkColor" />;
text-decoration : none;
}
I've pasted some examples below, with the variables in blue.
Can anyone tell me where i should be looking in order to alter the value of these variables?
a.product_section:visited {
color : <actinic:variable name="VLinkColor" />;
text-decoration : none;
}
a.product_section:link {
color : <actinic:variable name="LinkColor" />;
text-decoration : none;
}
a.product_section:active {
color : <actinic:variable name="ALinkColor" />;
text-decoration : none;
}
a.product_section:hover {
color : <actinic:variable name="HLinkColor" />;
text-decoration : none;
}
Comment