Guten Abend,
Ich habe mir einen Header erstellt wo rechts ( 85% ) das Anmelde fenster ist und Links das Logo bzw der Name.
CSS Datei:
Html Code:
Das Problem ist das er den Text unter den Text unter den Header angibt was kann ich machen?
Ich habe mir einen Header erstellt wo rechts ( 85% ) das Anmelde fenster ist und Links das Logo bzw der Name.
CSS Datei:
Code:
#body {
padding: 0;
margin: 0;
}
#box1 {
position: absolute;
top: 0px;
left: 0px;
height: 45px;
border-bottom: 1px solid #000000;
background-color: #151515;
width: 100%;
}
#logo {
font-style: normal;
font-family: arial;
font-size: 30px;
text-decoration: none;
color: #0040FF;
font-weight: bold;
padding-left: 15px;
}
Html Code:
HTML:
<body>
<div id="box1">
<form id="formedit" action="userprofil.php" type="POST">
<input type="text" name="admin" value="username">
<input type="password" name="password" value="password">
</form>
<p id="logo"> TOBIASSTEPHAN</p>
</body>
</html>
Das Problem ist das er den Text unter den Text unter den Header angibt was kann ich machen?