Question

Again, moved from github, so sorry for cross-posting.

I have adapted the minimal player and can't get the font color for the title of the tracks to change. All other font attributes change, but the font colour always remains black:

.sc-player {
font-family: Century Gothic, sans-serif;
color: grey;
font-size: 12px;
line-height: 1.6em;
font-weight: none;
text-transform: lowercase;
}

How do I change the color attribute?

Thanks

Was it helpful?

Solution

.sc-player ol li a { color:grey; } should work fine for you or just .sc-player a { color:grey; }

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top