CMS Filter Active State of Reset Button / 50% Opacity When Not Checked

Hey @lovebrian649! We posted a guide on how to style an “All” button here, as you can see from the guide, you can add custom CSS that is applied to the button when it is active.

An idea of what you want to achieve would be:

<style>
    .your-radio-button-class.w--redirected-checked ~ .your-radio-button-label-class {
    	opacity: 100%;
    	}
</style>