Home › Forums › Azuma › Azuma and page margins › Reply To: Azuma and page margins
March 17, 2021 at 4:39 pm
#13651
Andy
Keymaster
The theme header contains the beginning of the container wrapper like this:
<div id="content" class="site-content clearfix">
<div class="container clearfix">
But you are using Elementor plugin to completely overwrite the theme’s header, so this HTML with the container
is missing.
You could try this custom CSS (Customize > Additional CSS) to make the main page area behave like the missing container:
.content-area {
max-width: 1140px;
margin-left: auto;
margin-right: auto;
}