I'm trying to add a header area to the top of a html page with a background image where I can display some content.
Here is a preview of the theme I'm editing: http://live.bobosh.com/frontium/
I've tried adding:
<div class= "top">
.top {
width:100%;
height: 50px;
background-image: url ('/img/background.png') repeat-x;
position: fixed;
top: 0;
left: 0;
z-index: 999;
}
It just pushes everything down and doesn't show my background image.
Thanks.
EDIT: Ok, I was able to just use background color and borders to get the div looking the way I wanted it and it is fixed to the top. However, it's covering up part of my header area now. I want it fixed to the top, but don't want it displaying over any of my other content. I just want it displayed above.
How could I do this?
Thanks.
