Hi,
How do i horizontally align radio buttons, as it seems it is fixed vertically.
I need to align two radio button horizontally, so they are both on the same line and not one below the other.
please help
Petey
Is this for a Custom Form or something else?
[quote]Is this for a Custom Form or something else?
[right][post=“13326”]<{POST_SNAPBACK}>[/post][/right][/quote]
Hi,
Yes this is for a form that i am wokring on…
[quote]Yes this is for a form that i am wokring on…
[right][post=“13360”]<{POST_SNAPBACK}>[/post][/right][/quote]
The checkboxes are displayed using <li> tags, so you should just style the <li> to appear inline.
#form_id ul li { float: left; } // or... #form_id ul li { display: inline; }
That would do it. Although, you'd want additional styles to modify appearance.