I set up a home page as a modular page. Created two modular subpages ( sidebar and content )
This is the code it creates on the home page:
<section id="body" class="">
<h1>home</h1>
<div id="sidebar"></div>
<div class="modular-row callout">
<h3>Sidebar Content</h3>
<ol>
<li>item 1</li>
<li>item 2</li>
<li>item 3</li>
</ol>
</div>
<div id="content"></div>
<div class="modular-row callout">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
</section>
Is there a reason why the main div for each module is an empty div and does not wrap the entire content of that module? See both <div id="sidebar"></div> and <div id="content"></div> are both empty 0 height divs.
Just wondering if there is a reason behind this. BTW this is using the default antimatter theme.
Thanks.