Looking at my HTML, I have the following structure:
<label class="fakeRadio active">
<input type="radio">
</label>
This is the CSS style I am using:
.fakeRadio input[type=radio]:checked + .fakeRadio.active {
opacity:0.5;
}
I'm experiencing an issue where the fakeRadio active class is not reflecting the desired opacity. Any thoughts on what might be causing this?