ich habe ein Problem mit einem Login Bereich, der in jedem Browser mit dem ich es versucht habe (IE / Firefox /Opera) auf andere Weise angezeigt wird. Wenn es nur im IE falsch angezeigt würde währ ich das ja gewöhnt aber hier ist es genau umgekehrt: Er wird nur im IE richtig angezeigt!
Ich vermute das es daran liegt, dass das CSS irgendwie nicht stimmt, hab aber keine Ahnung was. Wahre nett wenn ihr mir helfen könntet.
- Code: Alles auswählen
<html><head>
<style>/* LoginBar */
TD#signup {
font-style: normal;
color: #967895;
font-size: 8.5pt;
}
TD#lostpw {
font-style: normal;
color: #967895;
font-size: 8.5pt;
}
label {
height: 50px;
font-family: Tahoma;
padding-right: 2px;
font-size: 10pt;
color: #fafafa;
background-color: #000000;
}
input {
height: 50px;
font-family: Tahoma;
font-size: 8pt;
width: 50px;
background-color: #afafaf;
border: 1px #333333 dotted;
}
form {
margin: 0pt;
padding: 2px;
}
</style></head>
<body>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td rowspan="2">
<form method="post" name="form" id="form" class="c1">
<input type="hidden" name="logintype" value="login">
<input type="hidden" name="redirect_url" value="">
<input type="hidden" name="pid" value="48">
<label for="name">Nick</label>
<input type="text" name="user" size="20" maxlength="128" class="user">
<label for="name">Password</label>
<input type="password" name="pass" size="20" maxlength="20" class="password">
<input type="submit" name="submit" value="Login" class="submit">
</form>
</td>
<td id="signup"> reg</td>
</tr>
<tr>
<td id="lostpw"> pwl</td>
</tr>
</table>
</body></html>
