Remove radio button label

0
Hi all   Is there a way to remove label of radio button? I can’t find anything in the radio button properties for that option and my attempts in the scss file didn’t work.   Thanks
asked
1 answers
2

You can use “visibility: hidden” css property for “.mx-radiobuttons .radio label” class

.mx-radiobuttons .radio label {

padding-left: 0;

visibility: hidden;

}

 

answered