Quote:
Originally Posted by SuthernKumfort
If someone else could take a look at this screeen shot and not be so vague, I would greatly appreciate it. I have searched high and low to find where to edit the boxes so they wouldnt be black. Can anyone help please?
|
SuthernKumfort,
I extracted the code thats causing the black bkgd issue that U want 2 correct...
Look 4 this {{{ <td class="alt1" colspan="3"> }}} code and edit class options in Radioquestions 1,2 and 3...
HTML Code:
<tr>
<td class="alt1" colspan="3">
<b>$radioquestion1</b>
</td>
</tr><tr>
<td><input type="radio" name="radioanswer1" value="$radiochoice1a" <if
condition="$radiochoice1a == $radioanswer1">checked="checked"</if> />
$radiochoice1a </td>
<td><input type="radio" name="radioanswer1" value="$radiochoice1b" <if
condition="$radiochoice1b == $radioanswer1">checked="checked"</if> />
$radiochoice1b </td>
<td> </td>
</tr>
<tr>
<td class="alt2" colspan="3">
<b>$radioquestion2</b>
</td></tr><tr>
<td><input type="radio" name="radioanswer2" value="$radiochoice2a" <if
condition="$radiochoice2a == $radioanswer2">checked="checked"</if> />
$radiochoice2a </td>
<td><input type="radio" name="radioanswer2" value="$radiochoice2b" <if
condition="$radiochoice2b == $radioanswer2">checked="checked"</if> />
$radiochoice2b </td>
<td><input type="radio" name="radioanswer2" value="$radiochoice2c" <if
condition="$radiochoice2c == $radioanswer2">checked="checked"</if> />
$radiochoice2c </td>
</tr>
<tr>
<td class="alt1" colspan="3">
<b>$radioquestion3</b>
</td>
</tr><tr>
<td><input type="radio" name="radioanswer3" value="$radiochoice3a" <if
condition="$radiochoice3a == $radioanswer3">checked="checked"</if> />
$radiochoice3a </td>
<td><input type="radio" name="radioanswer3" value="$radiochoice3b" <if
condition="$radiochoice3b == $radioanswer3">checked="checked"</if> />
$radiochoice3b </td>
<td>If $radiochoice3a, please explain: <input type="text"
value="$radioanswer3other" name="radioanswer3other" /></td>
</tr>
1.) change td class 2 alter bkgd color
2.) add css style in header of template
Example code
***********
<style>
.radio button class {
background: #FFFFFF;
}
</style>
above is added 2 header area of template
***********
<td class="
alt1" colspan="3"> before changes
<td class="
radio button class" colspan="3"> after changes
edit all three radioquestion td classes in radioquestions 1,2 and 3...
I hope this gets U over the hump