Hi, please could someone help me fix the header for mazageen.net? I believe it would need to fix <h1group>. I've tried several tutorials but can't figure it out.
Much appreciated.
Sarina
The blog I need help with is mazageen.net.
WordPress.com is an easy way to start blogging. Get a blog, check out our features, read the latest announcements, choose from great themes, or learn about the team behind it.
Need help? Check out our Support site, then
Hi, please could someone help me fix the header for mazageen.net? I believe it would need to fix <h1group>. I've tried several tutorials but can't figure it out.
Much appreciated.
Sarina
The blog I need help with is mazageen.net.
In your custom CSS, you've set "div#header.row" to have fixed positioning. that means it will be taken out of the normal flow and everything else on the page moves up to display inline.
Just to make sure, is your end goal to make it so the header stays in place even when the content of the site is scrolled? Are you sure you want to do that?
If you want to keep the header a fixed position and prevent the content of the posts from showing through when you scroll, you could do something like this:
#header {
background: #fff;
max-width: 1100px;
}
body {
margin-top: -20px;
}
This topic has been closed to new replies.