Hello @benenoo
Please try adding following CSS codes to wp-admin > appearance > customize > Additional CSS
.um-field-checkbox .um-clear {
clear:none;
display:none;
}
.um-field-checkbox .um-field-area {
display:grid;
grid-template-columns:repeat(3,1fr);
grid-gap:10px;
}
.um-field-checkbox .um-field-area .um-field-checkbox {
display:block;
width:100% !important;
}
Hello, thanks works well on desktop but on mobile there 3 column, and its not display well.
may I can change like this
@media only screen and (min-width: 769px) {
.um-field-checkbox .um-clear {
clear:none;
display:none;
}
.um-field-checkbox .um-field-area {
display:grid;
grid-template-columns:repeat(3,1fr);
grid-gap:10px;
}
.um-field-checkbox .um-field-area .um-field-checkbox {
display:block;
width:100% !important;
}
}
Or there is other way ??
Thanks
Regards
Michel
-
This reply was modified 1 year ago by
benenoo.