Zitat Zitat von NiKrYss
Okay, dann lass das <table> komplett weg, und lege das Hintergrundbild in den äußersten div-Tag.
Dein Code würde dann folgendermaßen aussehen:
PHP-Code:
<html>
<head>
    <title>Website</title>
       <link rel="stylesheet" type="text/css" href="formatierung.css">
       <link rel="shortcut icon" href="pictures/favicon/favicon.ico">
    <style>
        a:link { text-decoration:none; color:#0080FF; }
            a:visited { text-decoration:none; color:#0080FF; }
        a:active { text-decoration:none; font-weigth:bold }
        a:hover { text-decoration: underline overline; color:#00FFFF; cursor:crosshair; }
    </style>
</head>
<body >
<div style="background-image:url(pictures/backgrounds/background.jpg);">
  <div id="root">
    <div id="title">
<?
        include("title.php");
?>
   </div>
  <div id="navigation">
<?
          include ("navigation.php"); 
?>
    </div>
    <div id="content">
<?
              switch ($_GET[section]) {
                 case "home":
                   include ("sections/home.php");
                    break;
                 case "news":
                    include ("sections/news.php");
                    break;
                 default:
                    include ("content.php");
               } 
?>
    </div>
    <br style="clear:both;" />
  </div> 
</div>
</body>
</html>
So, mit deinem Code klappts nun. Vielen Dank NiKrYss! Der ist nicht nur um einiges übersichtlicher sondern hat mir auch einige neue Methoden gezeigt, HTML und PHP Codes effektiver einzusetzten und zu verbinden.

Mfg Biosfear