Round Checkbox

Is anybody can advised on how to get Round Checkbox, as I’m using Theme “Gruvbox”?
Then how & where to add those? Thanks, Bruno

I think you would not be able to get a round one “with a tick in”, without changing the underling html, but some ideas on this page (if you replace the class name):

.checkbox-round {
    width: 1.3em;
    height: 1.3em;
    background-color: white;
    border-radius: 50%;
    vertical-align: middle;
    border: 1px solid #ddd;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
}

.checkbox-round:checked {
    background-color: gray;
}
1 Like

Thank you