Zitat Zitat von drunken monkey Beitrag anzeigen
Das Problem hatte ich auch schon. Am besten ist, du verwendest ü, etc., da geht's auf jeden Fall. ^^ Und wenn du php verwendest geht das eh ganz einfach mit
$output = htmlentities ($output);
Aber heißt es nicht ohnehin "Benutzername"? o_O
Würds da irgend ne Liste geben?

Zitat Zitat von drunken monkey Beitrag anzeigen
Zum Design: Hm, nicht schlecht. ^^ Sogar valide, toll! Ich würde allerdings vielleicht noch dünne Ränder an die ganzen farbigen Flächen machen.
Irgendwie, kann ich mir das nicht vorstellen. Meinst du irgendwelche spezielle Farben, z.B. überall einfach ein bischen heller oder so?
Wieso sind die Boxen im IE so "falsch" interpretiert? Das CSS wäre:
Code:
p {
  color: black;
  background-color: transparent;
  text-align: left;
  }
p.warnung {
  color: red;
  background-color: white;
}

body { 
  font: 80%/170% Verdana, sans-serif;
}

h1 {
  font: small-caps bold 1.6em Georgia, "Times New Roman", serif;
  font-size: xx-large;
}

code { font-family: "Courier New", Courier, monospace; }

E {
	border-style: none;
	}

div {
		position: absolute;
		padding: 0em;
		border: none;
		color: black;
		margin: 0 0 0 0;
    }
div#box1 { /* header */
		top: 0px;
		left: 150px;
		width: 830px;
		height: 100px;
		}
div#box2 { /* box unter dem header */
		background-color: RGB(90,131,214);
		top: 100px;
		left: 150px;
		width: 830px;
		height: 40px;		
		}
div#box3 { /* box- rahmen von inhalt */
		background-color: RGB(213,237,255);
		top: 140px;
		left: 150px;
		width: 600px;
		min-height: 440px;
		}
div#box4 { /* inhalts-box  */
		background-color: RGB(255,255,255);
		top: 160px;
		left: 170px;
		width: 530px;
		min-height: 370px;
		padding: 15px;
		}
div#box5 { /* box-rahmen für login + login box */
		background-color: RGB(180,200,255);
		top: 140px;
		left: 750px;
		width: 180px;
		height: 420px;
		padding-top: 20px;
		padding-left: 50px;
		}