Question
3
Replies
460
Views
Posted: February 21, 2020
Last activity: February 24, 2020
How to customize a CheckBox ? (pega7.2.2)
Hello,
I m working on a project, and I have to custom a checkBox (attached below)
1- I want to change the background color of the checkBox
2- change the color of the check from black to #F7F6F6
I ve tried to do it from the SKIN, but it s not working
Can you suggess me any solution?
Regards
Hasnaa
I think we need to have custom CSS for this.
Can you try adding below code in the custom CSS file?
input[type="checkbox"]:checked{ background: url('webwb/pzCheckboxChecked.svg') #F7F6F6; }
image for the check mark and background color for the checkbox.