Easy question for all the super smart people out here. Maybe I'm just tired on a Friday and can't find the answer.
I want the options / values in radio button and checkboxes to appear font-weight: normal. I have applied styling in CSS that makes the Labels normal font weight but the choices below stay bold. If anything I want the label to be bold 🙂 but the choices to be normal weight.
This is doing some of the trick for the label:
.mktoForm .mktoRequiredField label.mktoLabel {
font-weight:normal !important;
}
Solved! Go to Solution.
The bold is coming from your separate stylesheet bootstrap.css:
label {
display: inline-block;
max-width: 100%;
margin-bottom: 5px;
font-weight: bold;
}
You can override this with the more selective:
.mktoForm label {
font-weight: normal;
}
It's early days with the landing page and obviously the form's got a variety of problems. But here is the link:
The bold is coming from your separate stylesheet bootstrap.css:
label {
display: inline-block;
max-width: 100%;
margin-bottom: 5px;
font-weight: bold;
}
You can override this with the more selective:
.mktoForm label {
font-weight: normal;
}