Ok what am I missing?? I have a dropdown list so that admin can select a value from and then update the database. The list IS populated but the select box isn't wide enough to see any of the option values. I even tried adding a size attribute. I know there is something simple I neglected, but I need some fresh eyes to spot the issue! Here is my query to populate:
<cfquery name="list" datasource="rlbulbs">
SELECT rlbbrand.brandName
FROM rlbbrand
</cfquery>
And here is my drop down list:
<tr>
<td>Brand Name:</td>
<td><select name="brandName">
<cfoutput query="list">
<option value="#list.brandName#" selected="selected"></option>
</cfoutput>
</option>
</select></td>
</tr>
Thanks for any help in advance!