views:

51

answers:

1

I have a checkbox and a label, and while the label is set after the checkbox, it appears before it when the page is in view.

What could be the problem?

<input name="signed" id="fd_supplier_contract_signed" type="checkbox" value="1" />
<label for="fd_supplier_contract_signed">Signed:</label>

IMAGE:

alt text

A: 

Because the data in the image is lined up, you have styles that are controlling the positioning of the elements.

How to fix it totally depends upon what the styles are doing for the label elements and the input/checkbox elements.

Jeff Siver
They are both relative element, that are floating and the checkbox is even cleared left.
Chris