It’s just not working. I used “inspect element” in chrome to find out what I’m targeting. It says .main_color .toggler
so in my style sheet, i’ve done the following, but it’s only applying the first one to all the toggles! When I inspect element, I see that only the first one is overriding the original white background style.
.main_color .toggler:nth-child(1) {
background-color: #66cccc!important;
}
.main_color .toggler:nth-child(2) {
background-color: red!important;
}