Du must die Schrift für das div ändern welches Menu enthält.

index.php:
PHP-Code:
<html>
<head>
<style type="text/css">
.Navigation {
font-size: 20pt;                                                  //Font Größe: 20pt;
color: white;                                                      //Font Farbe: Weiß;
background: #31007B;
padding:3px;
border:1px solid silver;
width:150px;
height:700px;
position:absolute; left:0px;top:5px;
}
.Main {
background: #31007B;
padding:3px;
border:2px solid white;
width:500px;
height:700px;
position:absolute; left:155px;top:5px;
}
.Left {
background: #31007B;
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="index.php?content=Home">-Home</a><br />
<a href="index.php?content=Artikel">-Artikel</a><br />
<a href="index.php?content=Forum">-Forum</a><br />
<a href="index.php?content=Gästebuch">-Gästebuch</a><br />
<a href="index.php?content=Bilder">-Bilder</a><br />
<a href="index.php?content=Rezepte">-Rezepte</a><br />
<a href="index.php?content=Spiele">-Spiele</a><br />
<a href="index.php?content=Witziges">-Witziges</a><br />
<a href="index.php?content=Links">-Links</a><br />
<a href="index.php?content=e-Mail me">-e-Mail me</a><br />
<a href="index.php?content=Statistik">-Statistik</a><br />
</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 class="Left">
<?php
 
require ("/usr/export/www/vhosts/funnetwork/hosting/ismi/umfrage/config.inc.php");

require (
$relativer_pfad "poll_sm.php");
?>
</div>
</div>
</body>
</html>
Jetzt wird über den Links in der Naviagtion Menu in Schriftgröße 20 mit weißer Farbe angezeigt. Ich versteh nicht was du nicht verstehst >_>