hi. i use the counter many times on my blog.
but on one page only i want to change the color of the counter. all other counters Should keep their color.
how can i adapt this one counter? change the background color and the color of the numbers? thank you.
Hey diefleischerei,
Each page gets a unique class. If you look at your code (right click your page in your browser, then View Source) you’ll see it in your body tag.
For this page, the class is page-id-1030
. You can use this in Quick CSS:
.page-id-1030 .av-countdown-timer .av-countdown-cell-inner {
background-color:black !important;
color: white !important;
}
Just change the values as needed.
I hope that helps!
Best regards,
Sarah