aber die ganze seite ??
also hier ist der link: http://www.ofp-2.com/offline/
page.css
[PHP]
#root { background-color: #5A6B60; width: 100%; height: 100% }
#banner { background-color: #5a6b60; height: 80px }
#links { background-color: #5A6B60; width: 300px; float: left }
#mitte { background-color: #5A6B60; width: 700px; float: left }
#foot { background-color: #aa6b60; width: 100%; height: 40px }
A:link { color: #000000; font-size: 11px; font-family: Verdana; text-decoration: none }
A:visited{text-decoration: none; color : #000000; font-family: Verdana; font-size: 11px; }
A:active { text-decoration: unone; color : #000000; font-family: Verdana; font-size: 11px; }
A:hover {text-decoration: underline overline; color : #000000; font-family: Verdana; font-size: 11px; }
[PHP]
index.php
root hab ich ja schon ne farbe gegeben. allerdings bleibt immer noch ein weißer rahmen um die page.
wie bekomm ich den denn wech ??
das prob mit dem ie hab ich gelöst. allerdings hab ich ein neues prob. bin halt nen noob.
wenn man die hp http://www.ofp-2.com/offline/ aufgerufen hat, steht der copyright hinweis links neben den news. der soll aber unten, unter alles andere stehen. wie mach ich das ? und wenn man die breite des browsers verkleinert, ist auf einmal der inhalt unter der navi. das möchte ich auch gerne weg haben.
ich hoffe ihr helft mir....
also hier ist der link: http://www.ofp-2.com/offline/
page.css
[PHP]
#root { background-color: #5A6B60; width: 100%; height: 100% }
#banner { background-color: #5a6b60; height: 80px }
#links { background-color: #5A6B60; width: 300px; float: left }
#mitte { background-color: #5A6B60; width: 700px; float: left }
#foot { background-color: #aa6b60; width: 100%; height: 40px }
A:link { color: #000000; font-size: 11px; font-family: Verdana; text-decoration: none }
A:visited{text-decoration: none; color : #000000; font-family: Verdana; font-size: 11px; }
A:active { text-decoration: unone; color : #000000; font-family: Verdana; font-size: 11px; }
A:hover {text-decoration: underline overline; color : #000000; font-family: Verdana; font-size: 11px; }
[PHP]
index.php
PHP-Code:
<?php error_reporting(E_ALL);
include "inc/config.php"; // die Konfigurationsdateien lesen.
echo "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"\n";
echo " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n";
echo "<html>\n";
echo " <head>\n";
echo " <title>Meine Seite</title>\n";
echo " <link rel=\"stylesheet\" type=\"text/css\" href=\"page.css\" />\n";
echo " <meta http-equiv=\"Content-Type\"
content=\"text/html; charset=ISO-8859-1\" />\n";
echo " </head>\n";
echo " <body>\n";
echo " <div id=\"root\">\n"; // ganz oberer Div-Holder
echo " <div id=\"banner\">\n"; // banner
include "banner.php";
echo " </div>\n";
echo " <div id=\"links\">\n"; // linkes Menu
include "menu.php";
echo " </div>\n";
echo " <div id=\"mitte\">\n"; // In der Mitte der Inhalt
include "inhalt.php";
echo " </div>\n";
echo " <div id=\"unten\">\n"; // Unten der Inhalt
include "foot.php";
echo " </div>\n";
echo " <br style=\"clear:both;\" />\n"; // css-float beenden
echo " </div>\n";
echo " </body>\n";
echo "</html>\n";
?>
wie bekomm ich den denn wech ??
das prob mit dem ie hab ich gelöst. allerdings hab ich ein neues prob. bin halt nen noob.
wenn man die hp http://www.ofp-2.com/offline/ aufgerufen hat, steht der copyright hinweis links neben den news. der soll aber unten, unter alles andere stehen. wie mach ich das ? und wenn man die breite des browsers verkleinert, ist auf einmal der inhalt unter der navi. das möchte ich auch gerne weg haben.
ich hoffe ihr helft mir....
Kommentar