Page Body

Description

The Page Body is where the content of the website lives. It pretty much takes up the whole screen that isn't the header or footer.

 

Custom CSS

For style changes across multiple pages, add the code snippet to your Custom CSS panel and each page will be updated.

Advanced Code Injection

For style changes on one page, add the code snippet to the page Advanced Code Injection so only that page will be updated. Enclose your code in style brackets like this:

<style>

.Index-page {
}

</style>
 

Custom CSS

 

7.1

To target the page section

/* page section */
.page-section {
}

To target the section background

/* section background */
.page-section .section-background {
}

To target the content wrapper

/* content wrapper */
.page-section .content-wrapper {
}

7.0 Brine Template

To target the page body

/* page body */
.Main {
	font-family: ;
}

To target the index page

/* index page */
.Index-page {
}