Okey.
Öffne css/main.css
Und füge am Ende nach } ein:
Code:
#bar {
width:100%; /* Wenn so breit wie Seite auf width:800px; stellen */
background-image:url(../images/leiste.gif);
background-repeat:repeat-x;
font-size:10px;
color:#777777;
padding:4px 0 5px 0;
text-align:center;
margin:0 0 5px 0;
border-bottom:1px solid #777777;
}
#bar a {
font-size:10px;
color:#777777;
text-decoration:underline;
margin:0 5px 0 5px;
}
#bar a:hover {
text-decoration:none;
}
Öffne lib/header.php
Suche:
Code:
<body>
<div align="center">
Füge danach ein:
PHP-Code:
<div id="bar">
<? if ($_SESSION['login'] == 'true') {?>
<a href="index.php">Startseite</a> -
<a href="?content=/konto/uebersicht">Kontoübersicht</a> -
<a href="?content=/konto/refuebersicht">Refübersicht</a> -
<a href="?content=/intern/agbs">AGB</a> -
<a href="?content=/intern/faqs">FAQ</a> -
<a href="?content=/intern/impressum">Impressum</a>
<? } else {?>
<a href="index.php">Startseite</a> -
<a href="?content=/intern/agbs">AGB</a> -
<a href="?content=/intern/faqs">FAQ</a> -
<a href="?content=/intern/mediadaten">Mediadaten</a> -
<a href="?content=/intern/werbemittel">Werbemittel</a> -
<a href="?content=/intern/impressum">Impressum</a>
<? } ?>
</div>
lg Freak4ever