I have used this link to create a password countdown until my store goes live, however I cant seem to change the font colour, I can change the size and background colour but not the actual text colour
https://community.shopify.com/topic/950376
.timer {
background: #000000;
padding: 10px;
font-size: 14px;
font-family: “Arial Black”;
font-color: #f6fafd --Not working
}
Hi @emekayode ,
Just change your css code to the one I am adding below this will fix the issue:
.timer {
background: #000000;
padding: 10px;
font-size: 14px;
font-family: "Arial Black";
color: #f6fafd;
/* font-color: #f6fafd --Not working */
}
The css property responsible for changing the font color is just “color” not “font-color” which you have used.
So I have just replaced font-color with color and this will fix the issue.
Thanks