https://test.terminbuch.eu/massimo/termine
After you click "Registrieren", on the right you see a very small checkbox. It doesn't look like a normal checkbox. And its very small, although the Developer Tools show no rules for checkboxes.
Any ideas?
https://test.terminbuch.eu/massimo/termine
After you click "Registrieren", on the right you see a very small checkbox. It doesn't look like a normal checkbox. And its very small, although the Developer Tools show no rules for checkboxes.
Any ideas?
It's because you use display: inline-flex on the .checkbox class. Specify a flex attribute for the checkbox input element and it will work:
.checkbox-cb {
margin-right: 8px;
cursor: pointer;
flex: 0 0 auto;
}
add width:100px; in framework.css at line number 106 and class name .checkbox-cb. it will helps you.
you need to change below listed class.
.checkbox-cb {
margin-right: 8px;
cursor: pointer;
width: 40px;
}
It is a normal checkbox. It's 13px x 13px in Firefox which is the default checkbox size on this browser. I've isolated the code below so that you can play with it in different browsers:
.agbCheckbox {
height: 80px;
font-size: 11px;
}
.checkbox {
display: inline-flex;
align-items: center;
cursor: pointer;
}
.checkbox-cb {
margin-right: 8px;
cursor: pointer;
}
<div class="agbCheckbox checkbox" id="77">
<input class="checkbox-cb" id="77-cb" type="checkbox">
<span class="checkbox-text" id="77-text">Den Inhalt der <a id="agbLink" href="">AGB und Datenschutzerklärung</a> habe ich zur Kenntnis genommen und erkläre mich damit einverstanden.</span>
</div>
If you want to change the checkbox size with only CSS there is a good topic here on SO: Checkbox size in HTML/CSS