I am trying to change the text color of a header but the value is not being updated. Any idea whats going wrong? Here is my code:
.content
{
text-color:blue;
}
I am trying to change the text color of a header but the value is not being updated. Any idea whats going wrong? Here is my code:
.content
{
text-color:blue;
}
It's not text-color:blue; it's color:blue property to change the color of the text/font.
Use
.content
{
color:blue;
}
Will work for you. Refer this link.