honda2000
Mitglied Platinum Boarder
| Beiträge: 205 |   |
|
Re:Probleme bei Counter einbindung - 25/12/2006 13:09
den Counter "mittig" < zentriert einzubauen ist ja nicht mehr schwer
| Code: |
<td valign="top" width="152">
<table border="0" cellpadding="0" cellspacing="0" width="152" id="menu1">
<tr>
</tr>
<tr>
<iframe align="left" width='150' height='165' src='http://rouninizou.ro.funpic.de/Counter/B4YCounter/counter.php' marginwidth='0' marginheight='0' frameborder='0' scrolling='no'></iframe>
</td>
</table>
</td>
|
die Tabelle ist also 150px breit
der Counter selbst ist 150px breit > siehe /counter.php Zeile 140
| Code: |
echo"<table width=\"150\" border=\"0\" cellspacing=\"0\" cellpadding=\"2\" bgcolor=\"".$table_back_color."\">";
|
also reicht ja
| Code: |
<center>
<table border="0" cellpadding="0" cellspacing="0" width="152" id="menu1">
<tr>
</tr>
<tr>
<iframe align="left" width='150' height='165' src='http://rouninizou.ro.funpic.de/Counter/B4YCounter/counter.php' marginwidth='0' marginheight='0' frameborder='0' scrolling='no'></iframe>
</td>
</table>
</center>
|
nur deinen html-Quelltext musst du mal noch etwas korrigieren
etwa so:
| Code: |
<table border="0" cellpadding="0" cellspacing="0" width="152" id="menu1">
<tr>
<td>
<iframe align="left" width='150' height='165' src='http://rouninizou.ro.funpic.de/Counter/B4YCounter/counter.php' marginwidth='0' marginheight='0' frameborder='0' scrolling='no'></iframe>
</td>
</tr>
</table>
|
|