Fixed  Hard coded a.button colour?

ijeffers

Active member
Could be wrong, but I can't find it hidden in the style property's anywhere.

I think this colour is hard coded (but also unnescessary?) :

a.button
{
display: inline-block;
color: black;
}

in the form.css template but the only place I've found where it enforces it's self is on the style chooser, everything else seems to get overriden by other style properties (or pulls through the correct values from the button style properties)
 
That rule is needed for CSS specificity, but I've made it pull from the regular button color definition.
 
Top Bottom