Hallo, ich versuche ein Logo im Header einzubauen, das über den Rand läuft: siehe Foto
ich bin mir nicht sicher, in welches <div> das Logo muss. Muss ich mit z-index arbeiten?
der Code:
div id="header">
<div id="emotion">
<div id="emotion-header" >
<div id="emotion-header-title"><span>titel der Seite</span>
</div>
</div>
</div>
</div>
CSS
div#header {
border-top: 50px solid white;
background-color: #0093DD;
}
div#emotion {
margin: auto auto;
width:990px;
position:relative;
z-index: 1;
}
div#emotion-header{
width: 990px;
height:82px;
overflow:visible;
background-image: url(Bilder/logo1.png); (Größe 130x130px)
background-repeat:no-repeat;
background-position:left;
top: ???
background: #0093dd;
}
div#emotion-header-title{
text-align:right;
top:20px;
font: italic bold 40px 'Times New Roman',Times,serif;
color: #fff;
background-color: #0093dd;
}
Vielen Dank für Eure Hilfe