views:

66

answers:

2

Hi,

I have this page.

If <input> is and inline element why goes down the second radio button (Chico) ??

Regards

Javi

A: 

Try left floating the unordered list containing the radio buttons:-

ul.radio_list { float: left; }
monkeyninja
+1  A: 

Try setting display:inline on your li elements (the containers for your radio buttons).

RPM1984
FYI - i just did (using Firebug), and it fixes your problem.
RPM1984