XF 2.2 How to change border or outline color of checkboxex in custom style

orhanorak

Member
Hi there;

I'm trying to change the border color of checkbox in my custom dark style.

How can i change it ? Can I change it via CSS?

1663058536293.webp

thanks for replies in advance :)
 
See if this will change it in your EXTRA.less
This would make it red if it works.. you should be able to then edit the color to what you want.
CSS:
label.iconic i {
    color: #751e1e;
}
 
Top Bottom