I've created a website that displays the logo in the direct centre of the page. At the moment, the div's position is fixed. The logo also include an image map. What I'd like is for it to be absolute and when the user scrolls down, the logo will reach about 20px from the top and will become fixed. Very similar to Waypoints.
So although I can organise Waypoints, I can't get the site to load with the logo in the direct centre of the page (regardless the screen size). Any help would be greatly appreciated!\
My HTML:
<div class="logo">
<img src="images/logo.png" />
</div>
My Css:
.logo {
width: 351px;
height: 185px;
position: fixed;
left: 50%;
top: 50%;
margin-left: -175px;
margin-top: -92px;
text-align:center;
overflow:hidden;
z-index: 900;
}