Reply To: Background Image Full Page

Home Forums Support Background Image Full Page Reply To: Background Image Full Page

Home Forums Support Background Image Full Page Reply To: Background Image Full Page

#199828
Tom
Lead Developer
Lead Developer

Ah I think I see the issue.

You’ll need to wrap your entire site in a new container using GP Hooks.

In Before Header, add an opening HTML tag:

<div class="full-container">

Then in the wp_footer hook, add the closing tag:

</div><!-- .full-container -->

Then apply your image to that container (and not the others) using CSS:

.full-container {
    background-image: url(URL TO YOUR IMAGE);
}