Tagged: background
I would like a background that goes from top to bottom (header area included)
I tried this:
.home #main .main_color {
background-image: url(http://a1b.e7c.myftpupload.com/wp-content/uploads/2014/09/depositphotos_5907916-Paper-background..jpg);
}
but that only did the one page and didn’t include the header area. Can you help?
Hey!
Try adding this code to the Quick CSS:
.home #wrap_all:after {
content: "";
position: absolute;
width: 100%;
height: 100%;
z-index: 1;
background-image: url(https://a1b.e7c.myftpupload.com/wp-content/uploads/2014/09/depositphotos_5907916-Paper-background..jpg);
top: 0;
}
Cheers!
Josue