Forum How do I...?

radio button input form horizontally aligned

mklarmann
okay, i have this simple radio button:

<fieldset><legend>gender</legend>
<ol>
<li>
<input type="radio" name="male" id="male" value="m" /><label for="male"></label>
</li>
<li>
<input type="radio" name="female" id="female" value="f" /><label for="female"></label>
</li>
</ol>
</fieldset>

and i manage to display those buttons horizontally in firefox and safari...
but somehow princexml is rendering them vertical....

is there an easy solution for this?
mikeday
In both Firefox and Prince I get output looking roughly like this:

1. o
2. o

Where the "o" is meant to represent the radio button. What kind of layout were you expecting?
mklarmann
excuse me for not beeing precise with my case...

rendering was obviously a little different in prince and a normal browser.

but i managed it so far.
When finished I am posting it to samples.

thanks a lot