The CSS snippet below will hide the radio buttons and/or checkboxes in your survey.
/*This hides the radio button*/
.radio input[type="radio"]{
display: none;
}
/*This hides the checkbox*/
.checkbox input[type="checkbox"]{
display: none;
}
The CSS snippet below will hide the radio buttons and/or checkboxes in your survey.
/*This hides the radio button*/
.radio input[type="radio"]{
display: none;
}
/*This hides the checkbox*/
.checkbox input[type="checkbox"]{
display: none;
}
Comments
0 comments
Please sign in to leave a comment.