@andersonannem, you can follow two options to change the color of a page background:
1) Go to template manager -> thememagic -> change background color, text color… -> Save As a NewTheme. Then back to administrator page -> template manager, open your default template -> choice theme is NewTheme
2) Please open templates/ja_appolio/css/custom.css file (if this file doesn’t exist, just create it) and add following CSS rules:
body {
background-color: #f2f2f2;
}
( #f2f2f2 is my demo color, please change to your own color)
Disable “Optimize CSS” and check your frontend.
Note: if you want to change parallax background color too, please open templates/ja_appolio/css/custom.css file and add css rule:
.section.parallax {
background-color: #f2f2f2;
}
Hope it helps.