Custom Headers
To insert a header image of your own. Drop an image into the RapidWeaver Resources.
Then use the following CSS code in the page inspector > custom css pane:
#intro-background {
background: url(resources/header.jpg)
no-repeat center center!important;
}
Just make sure the images have the same filename.
Enjoy!

Note:
If you are doing a sub folder setup do like this for the sub pages:
So there is an extra "../"
Sub pages are things like for example:
http://yoursite.com/page1/index.html
Essentially, pages not in the root directory.
If you are doing a sub folder setup do like this for the sub pages:
#intro-background {
background: url(../resources/header.jpg)
no-repeat center center!important;
}
So there is an extra "../"
Sub pages are things like for example:
http://yoursite.com/page1/index.html
Essentially, pages not in the root directory.