Search code examples
htmlcsscoding-stylestylesheet

CSS element rule


I have a min height rule on the bottom of this page for an element I can't find the rule to edit to save my life. I just need to reduce the space on the bottom of the site.

The website is http://www.lumivase.com/

The problem I am having exactly is shown in this screen shot

enter image description here

<?php global $options; foreach ($options as $value) { if (get_settings( $value['id'] ) === FALSE) { $$value['id'] = $value['std']; } else { $$value['id'] = get_settings( $value['id'] ); } } ?>

    </div>

</div>

<?php if ( $wp_prolific_footer_widgets == 'Yes' ) { ?>
<?php include (TEMPLATEPATH . '/footer-widgets.php'); ?>
<?php } ?>

<div id="footer" class="clearfix">

    <div class="limit">
         <?php _e(""); ?> 

    </div>

</div>

<?php wp_footer(); ?>

</body>

</html>

Solution

  • Try to locate the wp_footer() function, in your php code. It seems the problem is located within that function, but you didn't posted it, so we can't tell you what to change.