/* ---------------------
template layout
--------------------- */
/** wrapper to make the page center **/
#container {
width:900px;
margin: 0px auto;
padding:0;
text-align: left;
}
/**
hold background, it should be float:left
that's way we can not put it in #container
**/
#containerbg {
position:relative;
width: 900px;
background:transparent url(../images/bg_inside.jpg) repeat-y left top;
float:left;
top:0;
left:0;
}
#outerleft {
position:relative;
float:left;
clear:left;
width:730px;
}
#outerright {
position:relative;
top:150px; // <--- Diese Zeile habe ich eingefügt,
width:170px; // um unterhalb des Titel-Logos zu sein.
float:right;
clear:right;
}
#logo {
position:relative;
border-width:1px;
border-style:solid;
border-color:#7c3b3a;
width:898px; // <-- Das ist auch neu, betrifft die
height:148px; // Dimension des Logos.. auch die
float:left; // border-Anweisungen sind neu
background-color:#FFFFFF
}
#container_inner {
position:relative;
float:left;
clear:left;
width:730px;
}
/** div container for left column **/
#leftcol {
position:relative;
float:left;
clear:left;
width:172px;
}
#leftcolmenu {
position:relative;
overflow:auto;
}
/** div wrapper for user2 & user3 **/
#content_top_wrapper {
position:relative;
float:right;
clear:right;
width:542px;
display:inline;
margin: 4px 8px 0 0;
}
/** div container for position:user2 **/
#content_top1 {
position:relative;
float:left;
clear:left;
width:269px;
}
/** div container for position:user3 **/
#content_top2 {
position:relative;
float:right;
clear:right;
width:269px;
}
/** div container for mainbody **/
#content_main {
position:relative;
float:left;
width:520px;
margin:0px 0 20px 20px;
background-color:#FFFFFF;
}
/** div container for right column **/
#rightcol_top,
#rightcol {
float:left;
clear:left;
width:168px;
margin:0 0 0 1px;
display:inline;
overflow:auto;
}
/** div container for right column position:header **/
#rightcol_top {
height:70px;
min-height:70px;
background:transparent url(../images/bg_topright.jpg) no-repeat center top;
}
Lesezeichen