schutzgeist
Erfahrenes Mitglied
Hallo,
ich probier schon seit gestern an dem Footer (div Anschrift) rum und bekomms einfach nicht hin... entweder er passt sich 'komplett' an, sprich.. rutscht unter den Inhalt, obwohl die Seite nach unten noch Platz hätte oder er bleibt einfach starr am Seitenende bei Aufruf und steht beim scrollen dann fest so dass es darunter weiter geht...
Hier mal der Code..
CSS:
HTML:
Danke schonmal,
Gruß schutzgeist
ich probier schon seit gestern an dem Footer (div Anschrift) rum und bekomms einfach nicht hin... entweder er passt sich 'komplett' an, sprich.. rutscht unter den Inhalt, obwohl die Seite nach unten noch Platz hätte oder er bleibt einfach starr am Seitenende bei Aufruf und steht beim scrollen dann fest so dass es darunter weiter geht...
Hier mal der Code..
CSS:
Code:
/* CSS Document */
html, body {
background: url(../img/bg.gif) repeat-y #EEEEEE;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
margin:0;
padding:0;
height:100%;
}
#container {
position:relative;
margin:0 auto;
min-height:100%; /* Mindesthöhe in modernen Browsern */
height:auto !important; /* !important-Regel für moderne Browser */
height:100%; /* Mindesthöhe in IE (<7) */
}
#logo {
position: absolute;
top: 0;
left: 0;
width: 169px;
height: 117px;
background: #C7C5C5;
}
#header {
position: absolute;
top: 0;
left: 170px;
height: 117px;
width: 630px;
background: #345DA8 url(../img/header.jpg) no-repeat;
}
#language {
position: absolute;
top: 117px;
left: 0px;
width: 159px;
height: 20px;
color: #666666;
border-top: 1px solid #FFF;
border-bottom: 1px solid #FFF;
text-align: right;
padding-right: 10px;
padding-top: 5px;
}
#language a {
color: #666666;
text-decoration: none;
}
#language a:hover {
color: #666666;
text-decoration: underline;
}
#language img {
padding-bottom: -1px;
}
#subnavi {
position: absolute;
left: 170px;
top: 117px;
border-top: 1px solid #FFF;
border-bottom: 1px solid #FFF;
height: 20px;
padding-top: 5px;
background: url(../img/bg_subnavi.gif) repeat-y;
text-align: right;
width: 623px;
padding-right: 7px;
}
#subnavi a {
color: #FFFFFF;
text-decoration: none;
}
#subnavi a:hover {
color: #FFFFFF;
text-decoration: underline;
}
#navi {
position: absolute;
left: 0;
top: 144px;
width: 169px;
padding-top: 35px;
}
#navi img {
padding-bottom: 1px;
}
#navi ul {
margin: 8px;
margin-left: 12px;
padding-left: 0px;
list-style: none;
}
#navi li {
margin-top: 15px;
margin-bottom: 15px;
}
#navi a {
color: #000;
text-decoration: none;
}
#navi a:hover {
text-decoration: underline;
}
#content {
position: absolute;
top: 144px;
left: 170px;
width: 485px;
line-height: 16px;
padding: 35px 100px 25px 45px;
background: url(../img/bg.jpg) no-repeat top;
height: 300px;
min-height: 300px;
}
#anschrift {
position:absolute;
bottom:0;
left:0;
width:159px;
height: 100px;
padding-left: 10px;
color: #666666;
background: #FF0000;
}
#anschrift a {
color: #666;
text-decoration: none;
}
#anschrift a:hover {
color: #666;
text-decoration: underline;
}
HTML:
HTML:
<div id="container">
<div id="logo"></div>
<div id="header"></div>
<div id="language"></div>
<div id="navi"></div>
<div id="subnavi"></div>
<div id="content"></div>
<div id="anschrift"></div>
</div>
Danke schonmal,
Gruß schutzgeist