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?
<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?