Currently I'm using wordpress for my website. The height of my sidebar and main content area doesn't align. How to I make the height of my sidebar and the main content consistent? Example pageA has longer content but the sidebar is shorter, so the unused sidebar area will fill up with blank white space.
Below is my index.php code.
<?php get_header(); ?>
<div id="table">
<div id="mainsidebar">
<?php get_sidebar(); ?>
</div>
<div id="maincontent">
<div valign="top">
<?php wowslider(9); ?>
</div>
<div valign="bottom">
<?php include('main-content.php'); ?>
</div>
</div>
</div>
<?php get_footer(); ?>
</body>
Here the sample image link that I've uploaded.
Thanks.