Noticed that when creating pages that in the Page Attributes/Template Box it lists Elementor fullwidth Blank as an option. Also able to choose a blank template in BeaverBuilder. Not sure if this really solves the issue
Theme Author
Tom
(@edge22)
Hi there,
Are you building this in GeneratePress? If so, what do you mean by page color? The color of the box which holds the content/page builder?
Let me know 🙂
GP is my theme but using elementor and beaverbuilder to create my pages. The background color in the page builders seems to follow whatever is assigned in the GP theme customized. Didn’t know if it was possible to assign colors in the builders instead of the theme settings
Theme Author
Tom
(@edge22)
Interesting, if there’s not an option to change the background color in the builders, you can use CSS.
For example, use my Simple CSS plugin: https://ww.wp.xz.cn/plugins/simple-css/
Then on the page you’re editing, you’ll see the Simple CSS metabox for CSS specific to that page.
Then you can add something like this:
.separate-containers .inside-article,
.one-container .site-content {
background-color: #FFFFFF;
}
Adjust the color as needed.
Hope this helps 🙂