- This topic has 3 replies, 2 voices, and was last updated 3 years, 8 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
- The topic ‘Azuma and page margins’ is closed to new replies.
Hi all – I’m using the free Azuma theme with WooCommerce and the shop pages have all lost their margins/containers. I want to fix it, but don’t want to do the wrong thing. Please help me adjust it. Check out http://www.axionarchery.com/products.
Any help is appreciated.
Thanks,
Jennie
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;
}
Thank you SO much for helping me!!
Worked like a charm.