Hi Matt,
I have done website with similar effect and I use following code for this.
css
Code:
#header{
position:relative;
height:350px; }
#logo{
position:absolute;
top:0;
left:25px;
z-index:99;
padding-top: 10px;
width:180px;
height:150px;
background-color:#FFFFFF;
border:1px solid #ddd;
border-top:none;
text-align:center;}
html
Code:
<div id="header">
<div id="logo"><a href="index.html"><img src="img/logo.jpg" alt="Logo" /></a></div>
</div>
Logo is the element over the header.
Hope it will help you.
Good luck,
anita@sadurska.com
|