I just modified a form by adding a select box "How Found."
http://test.kripalu.org/ctlg_order.php
All the fields have a yellow background except for the one I just added.
This puzzles me as I have not specified color in the html or css. The only difference I can see between the pre-existing fields and the one I just added is that the new one is driven by a db table.
PHP Code:
<td align="right" valign="bottom"><p><label>How found:</label></p></td>
<td colspan="3" valign="top"><select name="how_found" >
<option selected value="">Please select One</option>
<?php
while ($how = mysql_fetch_array($how_found)) {
$name = $how['name'];
$code = $how['code'];
echo "<option value='$code'>$name</option>\n";
}
?>
</select>
</td>
</tr>
Any clues why? Suggestions for making the new box the same color as the others?
Bookmarks