Hallo
Ich habe folgendes Problem.
Ich habe eine Page mit 2 Bereichen , Menu und Inhalt.
Aufgeteilt habe ich die beiden Bereiche durch Div-Containe zusammen mit CSS.
Problem ist folgendes.
Eigentlich sollte das Menu eine feste grö?e habe , und der Inhalt Bereich sollte sich dem Fenster anpassen.
Leider verschiebt sich der Menu Teil immer über den InhaltBereich wenn ich das Fenster in der grö?e verändere.Und der Inhalt Bereich verzieht sich so das die Tablle nicht mehr korekt dargestellt wird.
Der Inhalt Bereich bzw Div besteht aus einer Tabelle die sich automatissch anpassen sollte. Wenn ich die Tabelle alleine anzeige funtioniert das Prima sie passt sich automatisch an das Fenster an.Nur zusammen funtioniert das irgenwie nicht.
Ihr seit meine letzte Hoffnung
MFG
Vincent
PS:
Hier die Codes:
Die Datei Styles2.css
#Links{
top:15%;
left:15%;
width:160px;
position:absolute;
height:600px;
background-color:#FFFF00;
}
#Rechts{
top:15%;
left:30%;
position:absolute;
width:50%;
height:50%;
}
Alles anzeigen
Und hier die eigenliche Seite:
<div name="Links" id="Links"></div>
<div name="Rechts" id="Rechts">
<table cellspacing="0" cellpadding="0" align="center" border="2" width="100%" height="100%">
<tr>
<td background="y-ol.JPG" height="42px" width="29px"> </td>
<td background="y-oben.JPG" height="42"> </td>
<td background="y-or.JPG" height="42px" width="29px"> </td>
</tr>
<tr >
<td background="y-mitteL.JPG" width="29px" > </td>
<td background="y-mitte.JPG" >
<?PHP
extract ($_GET, EXTR_OVERWRITE);
if(isset($foo)) include $foo;
else include('filterPro.php');
?>
</td>
<td background="y-mitteR.JPG" width="29px"> </td>
</tr>
<tr>
<td background="y-ul.JPG" height="42px" width="29px"> </td>
<td background="y-umitte.JPG" height="42px"> </td>
<td background="y-ur.JPG" height="42px" width="29px"> </td>
</tr>
</table>
</div>
Alles anzeigen
Und hier nochmal der Code der Tabelle alleine.
<table cellspacing="0" cellpadding="0" align="center" border="2" width="100%" height="100%">
<tr>
<td background="y-ol.JPG" height="42px" width="29px"> </td>
<td background="y-oben.JPG" height="42"> </td>
<td background="y-or.JPG" height="42px" width="29px"> </td>
</tr>
<tr >
<td background="y-mitteL.JPG" width="29px" > </td>
<td background="y-mitte.JPG" >
<?PHP
extract ($_GET, EXTR_OVERWRITE);
if(isset($foo)) include $foo;
else include('filterPro.php');
?>
</td>
<td background="y-mitteR.JPG" width="29px"> </td>
</tr>
<tr>
<td background="y-ul.JPG" height="42px" width="29px"> </td>
<td background="y-umitte.JPG" height="42px"> </td>
<td background="y-ur.JPG" height="42px" width="29px"> </td>
</tr>
</table>
Alles anzeigen