Joomla! version 2.5.19
DT Register version 2.8.12
I have found a problem in DT Register version 2.8.12. Sometimes it is not possible to check any option in the form.
Labels for input elements of radio type have relative positioning:
<span style="position:relative">
<span style="position:absolute;top:0px;left:0px;"><input id="Field25" name="Field[25]" class="inputbox " value="1" type="radio"></span>
<span class="dt_checkbox_label" style="position:relative">osobnà vlak</span>
</span> <br>
but left margin for .dt_checkbox_label in main.css is set to 10px only:
.dt_checkbox_label {
padding: 0 10px 0 10px;
margin: 0 0 0 10px;
}
Sometimes it is not possible to check any option in the form because the label overlaps the radio input.
It can be solved if I change left margin for .dt_checkbox_label in main.css to 20px
.dt_checkbox_label {
padding: 0 10px 0 10px;
margin: 0 0 0 20px;
}
Is it correct solution or it can be done better way?
Thanks.