Problem mit Liste
Pez
- html
Hallo.
Gleich mal der Link, bevor ich ihn vergesse:
http://www.dorfgemeinschaft-kendl.org/testdrivers/index.html
Ich komm einfach nicht drauf, wie ich User und Passwort nach Links rüberbekomm. Kann mir jemand helfen bitte.
Hallo.
Gleich mal der Link, bevor ich ihn vergesse:
http://www.dorfgemeinschaft-kendl.org/testdrivers/index.htmlIch komm einfach nicht drauf, wie ich User und Passwort nach Links rüberbekomm. Kann mir jemand helfen bitte.
Servus,
hab mir Deine Webseite eben angesehen.
Da Deine CSS-Formatierung nicht ersichtlich ist, gebe ich Dir den Tipp,
die positionierung der Elemente per
position: absolute; top: xx; left: xx; usw. zu positionieren.
Greetz MichaelS
hier die css datei:
body
{
background-color: #FFFFFF;
}
#main
{
width: 64em;
height: 48em;
background-color: #C0C0C0;
}
#logo {
width: 15.63em;
height: 8.13em;
background-color: #000000;
margin: 0.5em 0em 0em 0.5em;
position: absolute;
}
#login {
width: 12.5em;
height: 15.63em;
background-color: #C0C0C0;
margin: 9em 0em 1em 0.5em;
position: absolute;
}
#news {
width: 10em;
height: 1.38em;
background-color: #000000;
margin: 9em 0em 1em 13.28em;
position: absolute;
}
#datenbank {
width: 10em;
height: 1.38em;
background-color: #000000;
margin: 9em 0em 1em 23.45em;
position: absolute;
}
#community {
width: 10em;
height: 1.38em;
background-color: #000000;
margin: 9em 0em 1em 33.6em;
position: absolute;
}
#forum {
width: 10em;
height: 1.38em;
background-color: #000000;
margin: 9em 0em 1em 43.8em;
position: absolute;
}
#suche {
width: 10em;
height: 1.38em;
background-color: #000000;
margin: 9em 0em 1em 54em;
position: absolute;
}
.button {
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
color: #FFF;
text-decoration: none;
margin: 0.2em 0em 0em 0em;
}
.login {
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
color: #000;
text-decoration: none;
list-style: none;
font-weight: bold;
margin: 0.3em 0em 0em 3em;
}
.eingabe {
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
color: #000;
text-decoration: none;
list-style: none;
font-weight: bold;
margin: 1em 0em 0em 0em;
}
Setze Deine Login-Elemente mal in eine Tabelle und gibt dieser einer echte Class:
<table class="login" .....>
<tr><td>Login:</td><td>Formularfeld</td></tr>
<tr><td>Passwort:</td><td>Formulfeld</td></tr>
</table>
und in der CSS-Datei:
table.login {
position: absolute; top: xxem; left: xxem;
& Tableformatierungen
}
Dann kannst Du dieses Element optimal Positionieren.
Greetz MichaelS