Text positionieren?
lima-city → Forum → Die eigene Homepage → HTML, CSS & Javascript
absolute gehen
antworten
bewerbung
bild
code
datei
eigenschaft
file
formular
frage
http
jemand
kleines problem
komplette code
krieg
login
position
tag
text
url
-
Hallo,
Ich hab ein tag/kleines problem">kleines Problem, und zwar bin ich sehr neu in der HTML Welt und ich schaffe es irgendwie nicht den Text unter das Login Formular zu kriegen.
Hier ein Bild: http://www.bilder-hochladen.net/files/iy9r-1t-ea5d.png
Und hier der Code:
<td background="include/designs/design_22/images/bg_m2-4-6.jpg" width="4"> </td> <td background="include/designs/design_22/images/bg_m7.jpg" width="155" align="left" valign="top"> <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="155"> <tr> <td width="5" background="include/designs/design_22/images/bg_login.jpg"> <img border="0" src="include/designs/design_22/images/bg_login.jpg" width="1" height="27"></td> <td width="145" background="include/designs/design_22/images/bg_login.jpg"><b> <font face="Verdana" size="1"><font color="#C10000">User </font> Login</font></b></td> <td width="5" background="include/designs/design_22/images/bg_login.jpg"> </td> </tr> <tr> <td width="5" background="include/designs/design_22/images/bg_login2.jpg"> <img border="0" src="include/designs/design_22/images/bg_login2.jpg" width="1" height="118"></td> <td width="145" background="include/designs/design_22/images/bg_login2.jpg" align="left" valign="top"> <b><font face="Arial" size="1" color="#FFFFFF">{_boxes_login}</font></b></td> <td width="5" background="include/designs/design_22/images/bg_login2.jpg"> </td> </tr> <tr> <td width="5" background="include/designs/design_22/images/bg_login3.jpg"> </td> <td width="145" background="include/designs/design_22/images/bg_login3.jpg" align="left" valign="top"> <b><font face="Verdana" size="1" color="#C10000">Fragen</font><font face="Verdana" size="1"><font color="#C10000"> </font> und Antworten</font></b></td> <td width="5" background="include/designs/design_22/images/bg_login3.jpg"> </td> </tr> <tr> <a href="http://pony-clan.lima-city.de/index.php?forum-showposts-2-p1#2"> <b><font face="Verdana" size="1" color="#C10000">Wie schreibe ich eine Bewerbung?</font> </b></a>
Und hier der komplette Code: http://pastebin.com/TQBrmqhp
Und hier die CSS Datei: http://pastebin.com/Tbu13QG8
Weiß jemand wie ich das unter das Login Formular kriege?
Beitrag zuletzt geändert: 7.7.2012 13:11:44 von pony-clan -
Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!
lima-city: Gratis werbefreier Webspace für deine eigene Homepage
-
Wenn ich das richtig verstehe, dann willst du den Text "Wie schreibe ich eine Bewerbung" unter den Text "Fragen und antworten bekommen", richtig?
Du hast in deinem <tr>-Tag keine <td>-Tags drinnen stehen.
Ich habe es dir in denem Quelltext dick hervorgehoben was fehlt, damit es darunter steht:
<td background="include/designs/design_22/images/bg_m2-4-6.jpg" width="4"> </td>
<td background="include/designs/design_22/images/bg_m7.jpg" width="155" align="left" valign="top">
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="155">
<tr>
<td width="5" background="include/designs/design_22/images/bg_login.jpg">
<img border="0" src="include/designs/design_22/images/bg_login.jpg" width="1" height="27"></td>
<td width="145" background="include/designs/design_22/images/bg_login.jpg"><b>
<font face="Verdana" size="1"><font color="#C10000">User </font>
Login</font></b></td>
<td width="5" background="include/designs/design_22/images/bg_login.jpg"> </td>
</tr>
<tr>
<td width="5" background="include/designs/design_22/images/bg_login2.jpg">
<img border="0" src="include/designs/design_22/images/bg_login2.jpg" width="1" height="118"></td>
<td width="145" background="include/designs/design_22/images/bg_login2.jpg" align="left" valign="top">
<b><font face="Arial" size="1" color="#FFFFFF">{_boxes_login}</font></b></td>
<td width="5" background="include/designs/design_22/images/bg_login2.jpg"> </td>
</tr>
<tr>
<td width="5" background="include/designs/design_22/images/bg_login3.jpg"> </td>
<td width="145" background="include/designs/design_22/images/bg_login3.jpg" align="left" valign="top">
<b><font face="Verdana" size="1" color="#C10000">Fragen</font><font face="Verdana" size="1"><font color="#C10000">
</font> und Antworten</font></b></td>
<td width="5" background="include/designs/design_22/images/bg_login3.jpg"> </td>
</tr>
<tr>
<td></td><td>
<a href="http://pony-clan.lima-city.de/index.php?forum-showposts-2-p1#2"> <b><font face="Verdana" size="1" color="#C10000">Wie schreibe ich eine Bewerbung?</font>
</b></a></td>
</tr> -
Normalerweise würde es mit absolute gehen, doch in deinem Fall reicht es einfach wenn du nur die fehlenden <td> noch einfügst.
Beitrag zuletzt geändert: 10.7.2012 9:45:30 von websiteswebshops -
Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!
lima-city: Gratis werbefreier Webspace für deine eigene Homepage