
05-12-2008, 01:53 AM
|
 |
|
|
Join Date: Dec 2004
Location: Almost out of PHP TZone
Posts: 485
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by ccplim
Bro Deepdog009,
I tried playing around with the following codes
HTML Code:
<tr>
<td class="alt2" valign="middle">
<b>$radioquestion1</b>
</td>
<td class="alt3" valign="middle" colspan="1">
<input type="radio" name="radioanswer1" value="$radiochoice1a" <if condition="$radiochoice1a == $radioanswer1">checked="checked"</if> /> $radiochoice1a (Want To Buy)
<input type="radio" name="radioanswer1" value="$radiochoice1b" <if condition="$radiochoice1b == $radioanswer1">checked="checked"</if> /> $radiochoice1b (Want To Sell)
</td>
<td> </td>
</tr>
and it seems like by changing the "colspan" in the following from 2 to 1, it does help to shift the margin towards the left. However, I am not sure if this will have any side effect?
Change the colspan="2"
To colspan="1"
|
ccplim,,,
Good deal,,, Hard work pays off...:up:
Sorry,,, I forgot about the spacer size changes will also affect your forum alignments...
Changing the colspan count in your form will only affect that template...
COLSPAN ("how many across") and ROWSPAN ("how many down")
|