I’m working on a page, and it has about 30mm of space above the first color section, and I want to remove it. Looking at the code, it looks like this is making the space:
<div class="main_color container_wrap fullsize">
<div class="container">
<main class="template-page content av-content-full alpha units" itemprop="mainContentOfPage" role="main">
<div class="post-entry post-entry-type-page post-entry-3231">
<div class="entry-content-wrapper clearfix"></div>
</div>
</main>
</div>
</div>
I am using the advanced layout editor, so I don’t know why this space or code would be there. It’s not showing in the layout editor.
Hey msalem951!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.content, .sidebar { padding-top: 0px; }
If that does not help, please post the link to your website
Cheers!
Yigit
The site isn’t live, so I can’t share it with you, but your suggestion only removed about half of the space. It’s kind of funny that the space isn’t on other pages, only this one. I fixed it like this:
.page-id-3231 #main > div:first-of-type{display:none;}
I wish I knew why the space is there but not on the other pages.