Just adapt the width & height from 0px to the size of your header. You should put the url of the header between the ' '.
I set the width of this layout at 75%, but if you add a header, you might want to change that to a fixed width, so your header & content have the same width. You can change this at the part of the code that says (in the beginning):
Comments 2
will credit!
just a quick question, how can I add a header?
Reply
Near the end of the code you can find:
.headerimage {
position: relative;
width: 0px;
height: 0px;
margin-left: auto;
margin-right: auto;
background-image: url('');
repeat: no-repeat;
}
Just adapt the width & height from 0px to the size of your header. You should put the url of the header between the ' '.
I set the width of this layout at 75%, but if you add a header, you might want to change that to a fixed width, so your header & content have the same width. You can change this at the part of the code that says (in the beginning):
#content {
width: 75%;
background-color: transparent;
margin-left: auto;
margin-right: auto;
}
Just change the 75% to ???px (with on the ??? the width you want it to be).
Reply
Leave a comment