hiho
also das style sieht so aus: (steht doch alles in dem quelltext dort...

)
style:
|
Quellcode
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<style type="text/css">
<!--
input {
font-family: ;
font-size: 12px;
color: #;
}
.small {
font-size: 11px;}
input{ background-color:#DEE3E7;background:url('input.gif'); border-color: #DEE3E7; border-style: groove; border-width: thin;
font-family:Arial, Helvetica, sans-serif; color: #000066; scrollbar-track-color: #13619F; }
-->
</style>
|
und das inputding:
|
Quellcode
|
1
2
3
4
5
6
7
8
9
10
11
|
<table>
<tr>
<td><input class="small" type="text" name="user" style="width: 100%" size="8" maxlength="50" value="Benutzername" onBlur="if (value =='') {value = 'Benutzername'}" onFocus="if (value == 'Benutzername') {value =''}" /></td>
</tr>
<tr>
<td><input class="small" type="password" name="userpw" style="width: 100%" size="8" maxlength="50" value="passwort" onFocus="if (value == 'passwort') {value =''}"/></td>
</tr>
<tr>
<td><input class="small" type="submit" value="Login" /></td>
</tr>
</table>
|
brauchst dann eben noch das input.gif, das eben als hintergrund genutz wird. gibts
HIER
hoffe es klappt...
cu lord