noch eine rechte div hinzufügen

Status
Nicht offen für weitere Antworten.

slaughter89

Mitglied
Hi,
ich habe hier in einem zip das Grundgerüst meiner Seite angehängt.

Es besteht aus linker Seite, Mitte (= Content) und Footer.

Wie kann ich jetzt auch eine rechte Seite einrichten (die die Navigation werden soll).


Danke für die Hilfe :)
 

Anhänge

Hi,

spontan würd ich mal sagen:

Code:
<style type="text/css">
* { margin:0; padding:0; }
body { height:100%; overflow-y:scroll; }
#fixed_left, #fixed_right { position:fixed; width:170px; height:100%; background-color:#464646; border:1px solid #464646; }
#fixed_right { right:0; }
#page { background-color:#464646; padding-left:172px; padding-right:172px; min-height:95%; height:auto !important; height:95%;}
#footer { background-color:#464646; padding-left:172px; padding-right:172px; height: 5%}
</style>
<!--[if lt IE 7]>
<style type="text/css">
html { overflow-x:auto; overflow-y:hidden; }
#fixed_left, #fixed_right { position:absolute; }
#fixed_right { right:16px; }
</style>
<![endif]-->
Code:
<div id="fixed_left">
linke Seite der Page
</div>

<div id="fixed_right">
rechte Seite der Page
</div>

<div id="page">
// Content
</div>

<div id="footer">
<span style="font: 11px tahoma; color: #b3e32d">Code by ....</span>
</div>
 
Status
Nicht offen für weitere Antworten.
Zurück