eUncle
Neues Mitglied
mir ist grad folgendes aufgefallen und ich hab kein blassen schimmer, woran das liegen könnte:
aussehen sollte es so:

natürlich ohne den roten border, und den einfach auf white setzen ist murks...
sieht aber dann mit border 0 so aus:

hier mein html-code:
hier das zugehörige css:
aussehen sollte es so:
natürlich ohne den roten border, und den einfach auf white setzen ist murks...
sieht aber dann mit border 0 so aus:
hier mein html-code:
HTML:
<div class="layout_total">
<div class="menu">
<div class="box_top"></div>
<div class="box_middle">menu</div>
<div class="box_bottom"></div>
</div>
<div class="logo">
<div class="box_top"></div>
<div class="box_middle">logo</div>
<div class="box_bottom"></div>
</div>
<div class="layout_top"></div>
<div class="layout_middle">content</div>
<div class="layout_bottom"></div>
</div>
hier das zugehörige css:
PHP:
.layout_total
{
border:0px solid red;
width:1200px;
margin:0 auto;
padding:0;
}
.layout_top
{
background-image:url(layout_1_top.png);
background-repeat:no-repeat;
width:1020px;
height:20px;
margin:80px 0 0 120px;
}
.layout_middle
{
background-image:url(layout_1_middle.png);
background-repeat:repeat-y;
width:1020px;
min-height:500px;
margin:0 0 0 120px;
}
.layout_bottom
{
background-image:url(layout_1_bottom.png);
background-repeat:no-repeat;
width:1020px;
height:20px;
margin:0 0 0 120px;
}
.logo
{
border:0px solid blue;
width:200px;
margin:50px 0 0 0;
padding:0;
float:right;
}
.menu
{
border:0px solid blue;
width:188px;
margin:120px 0 0 0;
padding:0;
float:left;
}
.box_top
{
background-image:url(menu_1_top.png);
background-repeat:no-repeat;
width:188px;
height:11px;
}
.box_middle
{
background-image:url(menu_1_middle.png);
background-repeat:repeat-y;
width:188px;
padding:20px;
}
.box_bottom
{
background-image:url(menu_1_bottom.png);
background-repeat:no-repeat;
width:188px;
height:18px;
}
Zuletzt bearbeitet: