sverebom
Vice Admiral
- Registriert
- Aug. 2004
- Beiträge
- 6.643
Mal bitte hierhin schauen (ihr seht es wahrscheinlich erst ab 1280x1024)
Die Box, die den Footer enthält (Bild mit dem Schiff sowie die Copyrights) soll immer unten bleiben, auch wenn die darüber positionierte Content-Box die Höhre des Browserfenster nicht ausnutzt. Ebenso soll der Footertext untenbündig angezeigt werden und an beidem scheitere ich momentan. Hier der CSS-Code
Danke für eure Hilfe
Die Box, die den Footer enthält (Bild mit dem Schiff sowie die Copyrights) soll immer unten bleiben, auch wenn die darüber positionierte Content-Box die Höhre des Browserfenster nicht ausnutzt. Ebenso soll der Footertext untenbündig angezeigt werden und an beidem scheitere ich momentan. Hier der CSS-Code
Code:
body {
margin: 0 0 0 0;
background: #446BB0 url(bilder/body/unten.gif) repeat-x bottom;
}
#header {
width: 760px;
height: 113px;
background: #A1B5D7 url(bilder/body/logo.gif) no-repeat top;
}
#globalnavi {
width: 760px;
text-align: left;
background: #A1B5D7 url(bilder/body/navibg.gif) repeat-x bottom;
}
#globalnavi ul {
margin: 0;
list-style: none;
padding: 0 0 0 15px;
}
#globalnavi li {
margin: -1px;
display: inline;
}
#globalnavi a {
color: #FFFFFF;
background: #BD0000;
text-decoration: none;
border: 1px solid #BD0000;
padding: 2px 12px 2px 12px;
font: normal 10px Verdana, Arial, Helvetica, sans-serif;
}
#globalnavi a:hover {
color: #BD0000;
background: #FFFFFF;
}
#globalnavi .active {
color: #BD0000;
background: #FFFFFF;
padding: 3px 12px 2px 12px;
border-top: 1px solid #BD0000;
border-left: 1px solid #BD0000;
border-right: 1px solid #BD0000;
border-bottom: 1px solid #FFFFFF;
}
#inhalt {
width: 730px;
padding: 15px;
color: #000000;
text-align: left;
background: #FFFFFF;
border-left: 1px solid #BD0000;
border-right: 1px solid #BD0000;
border-bottom: 1px solid #BD0000;
font: normal 10px Verdana, Arial, Helvetica, sans-serif;
}
html>head:first-child+body #inhalt {
width: 728px;
}
#inhalt a {
color: #BD0000;
text-decoration: underline;
}
#inhalt a:hover {
text-decoration: none;
}
#inhalt .headline {
font: bold 12px Verdana, Arial, Helvetica, sans-serif;
}
#inhalt .subline {
font: normal 9px Verdana, Arial, Helvetica, sans-serif;
}
#inhalt .text {
text-align: justify;
padding: 5px 0 5px 10px;
border-bottom: 1px dotted #BD0000;
font: normal 10px Verdana, Arial, Helvetica, sans-serif;
}
#subnavi {
color: #000000;
text-align: center;
font: normal 10px Verdana, Arial, Helvetica, sans-serif;
}
#subnavi ul, li {
display: inline;
list-style: none;
}
#subnavi a {
color: #BD0000;
text-decoration: underline;
}
#subnavi a:hover {
text-decoration: none;
}
#form {
font: normal 10px Verdana, Arial, Helvetica, sans-serif;
}
#form input, #form textarea {
margin: 0;
width: 174px;
overflow: auto;
border: 1px solid #BD0000;
font: normal 10px Verdana, Arial, Helvetica, sans-serif;
}
#form .button {
width: 86px;
border: none;
color: #FFFFFF;
background: #BD0000;
font: normal 10px Verdana, Arial, Helvetica, sans-serif;
}
.vertibord {
border-right: 1px dotted #BD0000;
}
.horibord {
padding-bottom: 3px;
border-bottom: 1px dotted #BD0000;
}
#footer {
width: 760px;
height: 195px;
color: #FFFFFF;
vertical-align: bottom;
font: normal 9px Verdana, Arial, Helvetica, sans-serif;
background: url(bilder/body/bottom.gif) no-repeat bottom;
}
#footer a {
color: #FFFFFF;
text-decoration: underline;
}
#footer a:hover {
text-decoration: none;
}
Danke für eure Hilfe