Page 1 of 1

[SOLVED] - Change HTML control styles

Posted: Thu Jul 29, 2004 2:39 am
by anjanesh
I have a select control:

<SELECT NAME="Sel1">
<OPTION VALUE=0>Val 1</OPTION>
.
.
.
.
</SELECT>

I want the display of the control border to be changed - not the font size etc. For example I want ir borderless. BORDER=0 doesn't seem to work. I looked up all possible values for STYLEs but no result.
Any ideas for this method ?
Thanks

Posted: Thu Jul 29, 2004 2:50 am
by feyd
from experimentation a while ago, the select itself will not change styles, the individual options can change style though.. You'll need to build your own drop-down using DHTML.

Thanks

Posted: Thu Jul 29, 2004 3:20 am
by anjanesh
Thanks