M
Maik
Wenn du uns den kompletten Source-Code postest, können wir dir besser weiterhelfen ;-]
Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
body{background:#CCCCCC;}
#container {background:#FFFFFF;
width:1020px;
height:550px;}
#head {background-image: url(head_neu.png);
height:140px;
width:1020px;}
#logo {background-image: url(logo_w.png);
background-repeat:no-repeat;
background-position:750px 50%;}
.content{width:330px;
height:385px;
float:left}
.navi {width:170px;
height:385px;
float:left}
#foot {width:1020px;
height:25px;
float:left}
<body >
<div id="container">
<div id="head">
<div id="logo"></div>
</div>
<div>
<div class="Navi" >Navigation</div>
<div class="Content" >Content2 mit viel Blabla</div>
<div class="Content">Content1 mit viel Blabla</div>
<div class="Navi">News</div>
</div>
<div style="float:both;"></div>
<div id="Foot">
<a href="" >Sitemap</a> |
<a href="">Kontakt</a> |
<a href="" >Impressum</a></div>
</div>
#head
{
position: absolute;
left: 0;
top: 0;
z-index: 1;
background-image: url(head_neu.png);
height: 140px;
width: 1020px;
}
#logo
{
position: absolute;
left: 0;
top: 0;
z-index: 2;
background-image: url(logo_w.png);
background-repeat: no-repeat;
background-position: 750px 50%;
}
michaelsinterface hat gesagt.:Um das Logo über den Header zu legen, müssen die beiden DIVs entsprechend positioniert und das Logo-DIV mit einem höheren z-index versehen werden - also z.B.
michaelsinterface hat gesagt.:Evtl. solltest du für #logo eine Weiten- und Höhenangaben bestimmen.
#logo
{
height:140px;
width:1020px;
margin-top: -140px;
background-image: url(logo_w.png);
background-repeat: no-repeat;
background-position: 750px 50%;
}
michaelsinterface hat gesagt.:Könntest das Logo-DIV auch mit margin-top über das Header-DIV schieben:
Code:#logo { height:140px; width:1020px; margin-top: -140px; background-image: url(logo_w.png); background-repeat: no-repeat; background-position: 750px 50%; }
greez, maik.l