I would like to have the same font size for the checkboxes text at the bottom of the page
Hey Stefano,
I’m not sure which text you are looking to target. Could you post a screenshot highlighting an example, and let us know how you would like to change it please?
Best regards,
Rikard
with mobile some text of check box are different size
label.input_checkbox_label { font-size: 18px!important}
Hi goodpixel,
Please use this code instead (with !important it will be hard to override CSS):
top label.input_checkbox_label {
font-size: 18px;
}
@media only screen and (max-width:767px) {
#top label.input_checkbox_label {
font-size: 14px;
padding-left: 25px;
}
}
The first block with 18px (font-size) is for desktop and tablet versions.
The second block in the media query is set to 14px (font-size) for mobile and I added a left padding so the label does not show under the text box when it’s more than one row of text.
Just adjust the values as you see fit.
Best regards,
Nikko
Thanks but may be on mobile do not work