My Log In page has bright blue text in the information fields; ex:
Address Details
Log In Details, etc. I've searched the style sheets for that colr to no avail. Where can I change the font color of those headings?
Thanks!
My Log In page has bright blue text in the information fields; ex:
Address Details
Log In Details, etc. I've searched the style sheets for that colr to no avail. Where can I change the font color of those headings?
Thanks!
In your stylesheet find for:
LEGEND
A New Starter again
Typically, blue is not a default color???
But find legend in the stylesheet and add color to this code:
Change the html color to your choiceCode:LEGEND { font-weight: bold; padding: 0.3em; color: #9a9a9a; }
Edit: Seethrough is quicker
From recall, if the color of the legend is not set, it will become blue or green in color in FF and IE or the reverse.
.
A New Starter again
You guys are Gems!! Thank you sooo much!
For any future reference...
LEGEND {
font-weight: bold;
color: #a6545a;
padding: 0.3em;
}
doesn't work.....the color has to follow after padding...exactly like you have it...
LEGEND {
font-weight: bold;
padding: 0.3em;
color: #a6545a;
}