Hi,
ich habe mal wieder ein problem.
ich bin mir nicht sicher ob es an dem bißchenphp liegt oder am CSS!
also ich mir eine Seite gemacht.
http://pimo.dvl-clan.de/neues-projekt/index2.php
der rechte teil wo die umfrage drin ist bewegt sich immer mit der größe der tabelle nach unten.
ich weiß nicht waran es liegt.
hier die index2.php
wie ihr vielleicht seht wird der mittlere teil über GET eingebunden.
ihr die startseite.php
ich habe mal wieder ein problem.
ich bin mir nicht sicher ob es an dem bißchenphp liegt oder am CSS!
also ich mir eine Seite gemacht.
http://pimo.dvl-clan.de/neues-projekt/index2.php
der rechte teil wo die umfrage drin ist bewegt sich immer mit der größe der tabelle nach unten.
ich weiß nicht waran es liegt.
hier die index2.php
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Unbenanntes Dokument</title><style type="text/css"> <!-- body { background-color: #25447e; } .überschrift { font-size: 18px; color: #0033FF; } .links { text-indent:14px; } .newsüberschrift { font-size: 18px; color: #000000; } .Stil1 {font-size: 40px} .Stil2 {font-size: 24px} a:link { color: #CCCCCC; } a:visited { color: #CCCCCC; } a:hover { color: #CCCCCC; } a:active { color: #CCCCCC; } a.unten:hover, a.unten:active, a.unten:link, a.unten:visited { color:#25447e; } --> </style> </head> <body style="width:760px;margin:0px auto;height:100%;"> <table width="200" border="0" align="left" bordercolor="#FFFFFF" bgcolor="#25447e" style="border-width:1px;border-style:solid;border-color:withe;border-collapse:collapse;border-spacing: 0px;"> <tr> <td><table width="200" border="0"> <tr> <td bgcolor="#FFFFFF" class="überschrift">Home</td> </tr> <tr> <td bgcolor="#183263" class="links">»Startseite</td> </tr> <tr> <td bgcolor="#183263" class="links">»News</td> </tr> <tr> <td bgcolor="#183263" class="links">»Scripts</td> </tr> </table> <table width="200" border="0"> <tr> <td bgcolor="#FFFFFF" class="überschrift">Community</td> </tr> <tr> <td bgcolor="#183263" class="links">»Gästebuch</td> </tr> <tr> <td bgcolor="#183263" class="links">»Forum</td> </tr> <tr> <td bgcolor="#183263" class="links">»Kontakt</td> </tr> <tr> <td bgcolor="#183263" class="links">»Impressum</td> </tr> </table></td> </tr> </table> <?php $wohin=$_GET["site"]; switch($wohin) { case "news": include("news.php"); break; case "scripts": include("scripts.php"); break; case "scriptarchiv": include("scriptarchiv.php"); break; case "news": include("news.php"); break; case "clanmember": include("clanmember.php"); break; case "taktiken": include("taktikbereich/taktiken.php"); break; case "rules": include("rules.php"); break; case "startseite": include("startseite.php"); break; default: include("startseite.php"); } ?> <table width="200" border="0" align="right" bordercolor="#FFFFFF" bgcolor="#25447e" style="float:right;border-width:1px;border-style:solid;border-color:withe;border-collapse:collapse;border-spacing: 0px;"> <tr> <td><table width="200" border="0"> <tr> <td bgcolor="#FFFFFF" class="überschrift">Vote</td> </tr> <tr> <td bgcolor="#183263" class="links">Wie findet ihr diese Seite? </td> </tr> <tr> <td bgcolor="#183263"><form name="vote" method="post" action="<?php echo $php_self; ?>"> <blockquote> <p align="left"> <input type="radio" name="vote" value="1" /> Geil <input type="radio" name="vote" value="2" /> gut <input type="radio" name="vote" value="3" /> naja <input type="radio" name="vote" value="4" /> schlecht <input name="hidden" type="hidden" id="hidden" value="1" /> </p> <input type="submit" name="Submit" value="Voten!" /> </p> </blockquote> </form> </td> </tr> </table></td> </tr> </table> </body> </html>
ihr die startseite.php
Code:
<table width="341" border="0" bordercolor="#FFFFFF" bgcolor="#25447e" style="border-width:1px;border-style:solid;border-color:withe;border-collapse:collapse;border-spacing: 0px;margin-left:6px;float:left;"> <tr> <td><table width="340" border="0" style="border-collapse:collapse;border-spacing: 0px;"> <tr> <td bgcolor="#FFFFFF" class="newsüberschrift">www.tims-stube.de</td> </tr> <tr> <td bgcolor="#183263"><p class="Stil2">Willkommen auf meiner HP!</p> </td> </tr> </table></td> </tr> </table> </p> </p> <table width="341" border="0" bordercolor="#FFFFFF" bgcolor="#25447e" style="border-width:1px;border-style:solid;border-color:withe;border-collapse:collapse;border-spacing: 0px;margin-left:6px;float:left;"> <tr> <td><table width="340" border="0" style="border-collapse:collapse;border-spacing: 0px;"> <tr> <td bgcolor="#FFFFFF" class="newsüberschrift">www.tims-stube.de</td> </tr> <tr> <td bgcolor="#183263"><p class="Stil2">Willkommen auf meiner HP!</p></td> </tr> </table></td> </tr> </table> </p> </p> <table width="341" border="0" bordercolor="#FFFFFF" bgcolor="#25447e" style="border-width:1px;border-style:solid;border-color:withe;border-collapse:collapse;border-spacing: 0px;margin-left:6px;float:left;"> <tr> <td><table width="340" border="0" style="border-collapse:collapse;border-spacing: 0px;"> <tr> <td bgcolor="#FFFFFF" class="newsüberschrift">www.tims-stube.de</td> </tr> <tr> <td bgcolor="#183263"><p class="Stil2">Willkommen auf meiner HP!</p></td> </tr> </table></td> </tr> </table>
Kommentar