Hi Leute,
hab mir jetzt schon zig Tutorials zu Gemüte geführt aber irgendwie peil ich die ganze Lage dann doch noch net so ganz. Hier mal meine css Datei.
Code
* {
padding: 0;
margin: 0;
}
body {
background: #fff url(images/froopz_bground.gif) repeat-x;
color: #000;
font: normal 75%/1.4em "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
}
a, a:link
{
font-family: georgia, times, "times new roman", serif;
color: #B52C07;
text-decoration: none;
}
a:visited
{
color: #600;
}
a:hover, a:active
{
color: #fff;
background-color: #B52C07;
}
hr{
display: none;
}
/*IDS*/
#wrapper {
width: 760px;
margin: 0px auto;
overflow: hidden;
border-left: 1px solid #000;
border-right: 1px solid #000;
border-bottom: 1px solid #000;
color: #000;
}
#header
{
position: relative;
margin: 0px auto 0 auto;
width: 750px;
height: 204px;
background: transparent url(images/froopz_header.jpg) no-repeat 0 0;
}
#content {
margin-right: 200px;
background-color: transparent;
}
#sidebar {
float: right;
width: 170;
background-color: Silver;
}
#sidebar ul {
list-style-type: none;
line-height: 150%;
}
#footer {
width: 764px;
height: 27px;
margin: 0 auto;
clear: both;
text-align: center;
}
/*Classes*/
.copyright {
font: normal 0.8em/1.6em "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
}
p.postmetadata {
text-align: right;
font-size: 75%;
}
Alles anzeigen
Also eigentlich sollte sich doch der Sidebar (wegen float right) rechts neben den Content Bereich stellen oder? Macht er aber nicht, und ich hab keine Ahnung wieso. Würd mich über Hilfe freuen
rookie