This is a very elementary question.
When I try to change the background color for a certain page from the default dark to white, the usual command
body.page-id-xxxx {
background-color: #fff;
}
has no effect. Instead, I need to write these entrances for it:
.page-id-xxxx .container {
background-color: #fff;
}
and then
.page-id-xxxx {
background-color: #fff;
}
the last one is to get read of the fields (margins) on the left and right sides of the container that remain dark.
I am using GPP + Elementor. Does Elementor affect default GP behavior?
The same thing happens when I try to change color in the customizer, the page/post background color is divided into two:
1. body (this controls the margins
2. content (inside the content)
I am using the theme’s default GP’s layout (not Elementor canvas or Elementor’s full-width)