How can I adjust radio button label of
like this
I know this is possible only using tables, but how  I've tried applying table to it but failed. Is there any other way to do it?
HTML Code:
<div class="poll">
<div class="upm_polls">
<p class="upm_poll_form_question">[QUESTION]</p>
<ul class="upm_poll_ul">
[ANSWERS-START]
<table cellspacing="3" cellpadding="2" border="0">
<li class="upm_poll_form_list">
<tr>
<td><input type="radio" name="upm_answer" id="upm_answer-[ANSWER-ID]" value="[ANSWER-ID]" /> </td>
<td><label class="upm_poll_form_label" for="upm_answer-[ANSWER-ID]">[ANSWER]</label></td></tr>
</li></table>
[ANSWERS-END]
<li class="upm_poll_form_list poll_submit">
<div class="poll_form_footer">
<input id="upm_poll_form_submit" class="upm_poll_form_submit" name="upm_vote" value="Vote" type="submit">
<div id="upm_loading"></div>
</div>
</li>
</ul>
</div>
</div>
Should I post CSS code, too or it is adequate
__________________
"Think 100 times before you take a decision, But once that decision is taken, stand by it as one man." - Quaid-e-Azam
Last edited by asmalik12; 04-16-2011 at 03:28 AM..
|