I’m building a wordpress site with the theme Minimaze. I have been editing the CSS to try and make my logo overlap the slider, but not stay on-screen when scrolling down like it would if it was position: fixed. I want it to look like this, but when i scroll down i want the logo to stay at the top / not scroll down too.
But you can see at the moment that with position absolute the logo disappears: troide.co
That is with this code:
.site-description {
color: #777777;
font-size: 13px;
line-height: 13px;
}
#logo a {
display: inline-block;
}
#logo {
float: left;
text-align:center;
margin: 10px 0 0;
position: relative;
}
#logo img {
/*max-height: 100px;*/
display: block;
margin: 0 auto;
position: absolute;
z-index: 120
}
#logo h1 {
font-size: 22px;
font-weight: bold;
margin-top: 5px;
}
Any answers would be appreciated!