I'm having an issue with the page here. The div .menu-content
is only reaching half the page, even when set to 100% height. I can't figure out why this is happening.
Any help would be appreciated!
<div class = "menu-content">
<div class="wrapper" style = "background-color:white; height:100%; width:750px;">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php else : ?>
<?php global $rd_data; if ($rd_data['rd_error_text']) { ?>
<?php echo $rd_data['rd_error_text']; ?>
<?php } else { ?>
Oops, It looks like an error has occurred
<?php } ?>
<?php endif; ?>
</div>