
Originally Posted by
gizmo_girl
I tried this coding (below) as indicated and it moved the check box from the right to the left, but my text is below the check box. The text is also appearing in a column about 1/3 the width of the shipping insurance box. What else can I try to fix this?
It looks like you got the checkbox working.
Try adding this to your css:
Code:
html>/**/body input[type=checkbox], html>/**/body input[type=radio] {
float:left;
clear:both;
}
html>/**/body .checkboxLabel, html>/**/body .radioButtonLabel {
margin:0 .2em .5em 0;
float:left;
}
and then replace:
Code:
LABEL.inputLabel {
width:9em;
float:left;
}
with
Code:
LABEL.inputLabel {
width:85%;
float:left;
margin:0.3em 0;
}