|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
How to change the design of an Input-field ?
I would like to customise the input-fields into my webpages, with a thin blue line arond (1px - color #226E83), a grey background (color #111111) and the text in blue (verdana, 11px, color #238099)
Is there someone who knows how I can do this ? Thanks a lot anyway Spikes1 |
|
#2
|
||||
|
||||
|
RE: How to change the design of an Input-field ?
This belongs in the the client side forum... this forum is for the tutorials posted on this site.
|
|
#3
|
||||
|
||||
|
RE: How to change the design of an Input-field ?
Use CSS.
Code:
input {
border: 1px solid #226E83;
color: #238099;
font-family: Verdana, sans;
font-size: 11px;
background-color: #111;
}
-Tim |
|
#4
|
|||
|
|||
|
Message Moved
Thread moved from 'Tutorials' to 'Client Side Things' by bluephoenix.
Reason: * See Lig's comment |
![]() |
| Viewing: Codewalkers Forums > Other Technologies > Client Side Things > How to change the design of an Input-field ? |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|