so, ich glaub bin ein wenig schlauer...
doch funktionieren einige Sachen noch net...
seht selbst:
http://ismi.is.funpic.de/test/index.php
(in Adressleiste einfügen und enter...)

PHP-Code:
<html>
<head>
<style type="text/css">
.Navigation {
font-size: 16pt;
color: #FFFFFF;
font-family: Monotype Corsiva;
font-weight: bold;
text-align: left;
background-color: #082984;
padding:3px;
border:2px solid white;
width:150px;
height:350px;
position:absolute; left:0px;top:5px;
}
.Navigation2 {
font-size: 16pt;
color: #FFFFFF;
font-family: Monotype Corsiva;
font-weight: bold;
text-align: left;
background-color: #082984;
padding:3px;
border:2px solid white;
width:150px;
height:370px;
position:absolute; left:0px;top:360px;
}
.Main {
font-size: 18pt;
color: #FFFFFF;
font-family: Monotype Corsiva;
font-weight: medium;
text-align: left;
background-color: #082984;
padding:3px;
border:2px solid white;
width:700px;
height:730px;
position:absolute; left:155px;top:5px;
}
<!--
.Left {
font-size: 16pt;                                                  //Font Größe: 20pt;
color: #425A10;                                                      //Font Farbe: Weiß;
font-family: Monotype Corsiva;
background-color: #0084A5;
padding:3px;
border:2px solid white;
width:150px;
height:700px;
position:absolute; left:660px;top:5px;
}
-->
</style>
<link rel="shortcut icon" href="bilder/ismi.ch.vu.ico">
</head>
<body>
<div class="Navigation">
Menu<br />
<a href="home.php?content=Home">-Home</a><br />
<a href="artikel.php?content=Artikel">-Artikel</a><br />
<a href="phpBB2/index.php?content=Forum">-Forum</a><br />
<a href="myPHP_Guestbook_1.4/myphpg%E4stebuch/index.php?content=Gästebuch">-Gästebuch</a><br />
<a href="indexbilder.php?content=Bilder">-Bilder</a><br />
<a href="rezepte.php?content=Rezepte">-Rezepte</a><br />
<a href="spiele.php?content=Spiele">-Spiele</a><br />
<a href="witziges.php?content=Witziges">-Witziges</a><br />
<a href="links.php?content=Links">-Links</a><br />
<a href="index.php?content=e-Mail me">-e-Mail me</a><br />
<a href="statistik.php?content=Statistik">-Statistik</a><br />
</div>
<div class="Navigation2">
<?php
 
require ("/usr/export/www/vhosts/funnetwork/hosting/ismi/umfrage/config.inc.php");

require (
$relativer_pfad "poll_sm.php");
?>
</div>
<div class="Main">
<?php
switch($content){
case 
"Home": include("home.php"); break;
case 
"Artikel": include("artikel.php"); break;
case 
"Forum": include("phpBB2/index.php"); break;
case 
"Gästebuch": include("myPHP_Guestbook_1.4/myphpg%E4stebuch/index.php"); break;
case 
"Bilder": include("indexbilder.php"); break;
case 
"Rezepte": include("rezepte.php"); break;
case 
"Spiele": include("spiele.php"); break;
case 
"Witziges": include("witziges.php"); break;
case 
"Links": include("links.php"); break;
case 
"e-Mail me": include("mailto:ismailmorgenegg@yahoo.de?subject=Email%20me"); break;
case 
"Statistik": include("statistik.php"); break;
default: include(
"home.php"); break;
}
?>
</div>

</div>
</body>
</html>
wenn ich nun auf Artikel klicke, dann öffnet es die artikel.php nicht im main Teil, sondern in ganz einem neuen Fenster... was iss wrong?

-und ist es nicht besser, den css teil in ner eigenen Datei anzulegen??? hab ich mal gelesen...
-wie kann ich ein Bild als Titel einfügen (also oberhalb vom navigation und main teil,,,)??
-kann ich im css teil auch definieren, dass z.B. <t> bedeutet: grösse soundso und farbe sounso???
-wie kann ich die ganze Seite zentrieren???
-wie kann ich die Hintergrundfarbe von allem verändern? (ist im Moment grau, doch hab ich ja nix definiert...)

gruss ismi