05.03.2008, 16:52
da ist evtl. eher diese Seite interessant, die von Dragon vorhin in einem ähnlichen Thread genannt wurde.
Problem mit Text neben Bild!
|
|
05.03.2008, 16:52
da ist evtl. eher diese Seite interessant, die von Dragon vorhin in einem ähnlichen Thread genannt wurde.
05.03.2008, 16:57
Jockl schrieb:da ist evtl. eher diese Seite interessant, die von Dragon vorhin in einem ähnlichen Thread genannt wurde.Egal wie - ein wenig Eigenarbeit ist erwünscht - und wenn ich einmal dabei bin: Die Grafik in seiner Signatur stört mich extrem! Zu allem Übel ist das noch ein Hotlink.
05.03.2008, 17:34
Osamu schrieb:Eine Frage habe ich doch noch!Vor Farbcodes gehören Rauten (#).
Ich habe wieder ein Problem...
Also vorab ich habe von hier schon viel probiert nichts hat aber funktioniert! Also ich habe 2 Tabellen aber sie sind nicht nebeneinander sondern versetzt. Hier mal der Code: Code: <table style="margin-left:1px;width:240px;" class="tborder" border="0" cellpadding="{$theme['tablespace']}" cellspacing="{$theme['borderwidth']}">
<tr>
<td class="thead">
<center><strong>Test</strong></center>
</td>
</tr>
<tr>
<td class="trow1";height:"500px">
<center>
<div style="width: 97%; height: 150px; background-color:#FFFFFF; font-family: arial; font-size: 12px; color:#000000; font-weight: normal; font-style: normal; text-align:center; overflow: auto; padding: 5px; float:left;">Test Test </div>
</center>
</td>
</tr>
</table>
<table style="margin-right:1px;width:250px"; class="tborder" border="0" cellpadding="{$theme['tablespace']}" cellspacing="{$theme['borderwidth']}">
<tr>
<td class="thead">
<center><strong>Wichtiges</strong></center>
</td>
</tr>
<tr>
<td class="trow1">
<div style="width: 97%; height: 150px; background-color:#FFFFFF; font-family: arial; font-size: 12px; color:#000000; font-weight: normal; font-style: normal; text-align:center; overflow: auto; padding: 5px; float:left;">Test Test </div>
</td>
</tr>
</table>Und so sieht es aus(Anhang) Dies habe ich auch schon versucht. Hat nicht funktioniert. Vielleicht hab ich es auch nur falsch in den Code eingebaut ich hatte es ganz am schluss der beiden tabellen eingefügt! Also das Code: <br style="clear:left;" />habt ihr eine Idee?
Versuchs mal damit, indem du noch in den "table"-Tag das "align"-Attribut mit reinbringst.
Edit: Oder du machst noch eine weitere Tabelle drum herum. Das sollte auch möglich sein...
Man kann nicht alles haben - zumindest nicht gleichzeitig.
21.03.2008, 16:31
Kannst du mir da vielleicht einen Code sagen?
Hab das algin an verschiedenen stellen eingesetzt doch ging nicht. Kannst du den Code bitte generieren? Wie müsste das aussehen wenn ich noch eine Tabelle drum herum mache?
21.03.2008, 16:45
Hallo Osamu,
verwende einmal diesen Code: Code: <html>
<head>
<title>{$settings['bbname']} - Home</title>
{$headerinclude}
</head>
<body>
{$header}
<table>
</tr>
<td>
<table style="margin-left:1px;width:240px;" class="tborder" border="0" cellpadding="{$theme['tablespace']}" cellspacing="{$theme['borderwidth']}">
<tr>
<td class="thead">
<center><strong>Test</strong></center>
</td>
</tr>
<tr>
<td class="trow1";height:"500px">
<center>
<div style="width: 97%; height: 150px; background-color:#FFFFFF; font-family: arial; font-size: 12px; color:#000000; font-weight: normal; font-style: normal; text-align:center; overflow: auto; padding: 5px; float:left;">Test Test </div>
</center>
</td>
</tr>
</table>
</td>
<td>
<table style="margin-right:1px; width:250px"; class="tborder" border="0" cellpadding="{$theme['tablespace']}" cellspacing="{$theme['borderwidth']}">
<tr>
<td class="thead">
<center><strong>Wichtiges</strong></center>
</td>
</tr>
<tr>
<td class="trow1">
<div style="width: 97%; height: 150px; background-color:#FFFFFF; font-family: arial; font-size: 12px; color:#000000; font-weight: normal; font-style: normal; text-align:center; overflow: auto; padding: 5px; float:left;">Test Test </div>
</td>
</tr>
</table>
</td>
</tr>
</table>
{$footer}
</body>
</html>HTH.
21.03.2008, 17:18
linwinman schrieb:[code] Hier müsste aber ein <tr> hin, oder? Übrigens, alles Gute zum Geburtstag linwinman.
21.03.2008, 18:33
jetzt sind sie zwar in der gleichen höhe, aber neben einander =/
Und nicht mehr Rechts und Links! Wie kann ich das ändern?
Das müsste in etwa so aussehen.
Code: <html>
<head>
<title>{$settings['bbname']} - Home</title>
{$headerinclude}
</head>
<body>
{$header}
<table>
<tr>
<td align="left">
<table style="margin-left:1px;width:240px;" class="tborder" border="0" cellpadding="{$theme['tablespace']}" cellspacing="{$theme['borderwidth']}">
<tr>
<td class="thead">
<center><strong>Test</strong></center>
</td>
</tr>
<tr>
<td class="trow1";height:"500px">
<center>
<div style="width: 97%; height: 150px; background-color:#FFFFFF; font-family: arial; font-size: 12px; color:#000000; font-weight: normal; font-style: normal; text-align:center; overflow: auto; padding: 5px; float:left;">Test Test </div>
</center>
</td>
</tr>
</table>
</td>
<td>
</td>
<td align="right">
<table style="margin-right:1px; width:250px"; class="tborder" border="0" cellpadding="{$theme['tablespace']}" cellspacing="{$theme['borderwidth']}">
<tr>
<td class="thead">
<center><strong>Wichtiges</strong></center>
</td>
</tr>
<tr>
<td class="trow1">
<div style="width: 97%; height: 150px; background-color:#FFFFFF; font-family: arial; font-size: 12px; color:#000000; font-weight: normal; font-style: normal; text-align:center; overflow: auto; padding: 5px; float:left;">Test Test </div>
</td>
</tr>
</table>
</td>
</tr>
</table>
{$footer}
</body>
</html>Code: <td align="left" width="240">...Code: <td align="right" width="250">...
Man kann nicht alles haben - zumindest nicht gleichzeitig.
|
|
|
| Möglicherweise verwandte Themen… | |||||
| Thema | Verfasser | Antworten | Ansichten | Letzter Beitrag | |
|
|
Neben jedem Forum eine Grafik/Icon/Bild | whitenexx | 2 | 2.082 |
11.08.2010, 13:48 Letzter Beitrag: whitenexx |