Drop Down and text box issue

Posted on 16th Feb 2014 by admin

Is it possible to set a drop down list and text boxes to a certain width?

here is my code
Code: [Select]echo "<select name='categories'>";
echo "<option value=$row>Categories</option>";

while($row = mysql_fetch_array($result))
{
echo "<option value="$row[category]">$row[category]</option>.' '";
}
echo '</select>';
and
Code: [Select]Reciept Number:
<input name="record_receipt" type="text" id="record_receipt">

Other forums