Hello;
I am trying to create a Select Form Field with CSS that enables me to get rid of the "chisled" border look.
I know if I have a simple text box I can do this.
<input type="text" name="search" size="15" style="background: #eaeaea; border: 1px solid Gray;">
---------------------------------------------------
I want the same look for a drop-down select box
--------------------------------------------------
<select name="selectname" SIZE="1" style="background: #eaeaea; border: 1px solid Gray;">
<option style="background-color:#eaeaea;">Englsih</option>
<option style="background-color:#eaeaea;">German</option>
<option style="background-color:#eaeaea;">Italian</option>
<option style="background-color:#eaeaea;">French</option>
</select>
-----------------------------------------------
Can anyone help me?
Thanks,
Eric
I am trying to create a Select Form Field with CSS that enables me to get rid of the "chisled" border look.
I know if I have a simple text box I can do this.
<input type="text" name="search" size="15" style="background: #eaeaea; border: 1px solid Gray;">
---------------------------------------------------
I want the same look for a drop-down select box
--------------------------------------------------
<select name="selectname" SIZE="1" style="background: #eaeaea; border: 1px solid Gray;">
<option style="background-color:#eaeaea;">Englsih</option>
<option style="background-color:#eaeaea;">German</option>
<option style="background-color:#eaeaea;">Italian</option>
<option style="background-color:#eaeaea;">French</option>
</select>
-----------------------------------------------
Can anyone help me?
Thanks,
Eric