Counter text color not changing
in Shortcodes
Hello! I added some custom CSS to my home page, and i changed the text-transform of the title to uppercase, and it worked, but I also changed the color to white and it stays grey. This is the custom css i used on the page:
p.title {
text-transform: uppercase;
color: #ffffff;
font-size: 14px;
}
text-transform: uppercase;
color: #ffffff;
font-size: 14px;
}
This is how it is displayed:
Comments
p.title {
text-transform: uppercase;
color: #ffffff !important;
font-size: 14px !important;
}