|
|
|||||||||
|
|||||||||
|
|||||||||
| |
|||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
Text Box question
I am wondering, I am using Dreamweaver MX right now, how can you change the look of the text box, i have seen it on other websites where the background of them are different color other then white, then they make them blend in with the backgrounds etc.
Thanx |
|
#2
|
|||
|
|||
|
usually they are using their cascading style sheet to affect that change.
So for example, if you had a style called tbxstyle, you could set it's diffferent properties to your choosing (i.e., the background-color, the font, the border-style, border-color, etc.) Code:
.tbxstyle
{font-family : Arial, Helvetica, Verdana, font-size : 10px;
color : #000066;background-color : #CCCCCC;font-weight : bold;
border-style : dotted;border-color:#330099;border-width:1px;}
Here's a good resource for css: http://www.danzen.com/imm/css/ |
|
#3
|
|||
|
|||
|
Thank you very much, i will look into that right now, see what i can come up with
![]() |
|
#4
|
|||
|
|||
|
so in your code you would use something to this effect:
<input type="text" name="sName" maxlength="20" length="20" class="tbxstyle"> |
![]() |
| Viewing: Dev Articles Community Forums > Programming > ASP Development > Text Box question |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|