moved divs to change spacing, CSS to match, will now shrink with screen

This commit is contained in:
Jacob Haddon
2020-06-29 16:23:28 -04:00
parent cda9ac5e6d
commit f755fd3541
2 changed files with 24 additions and 8 deletions

View File

@ -5,7 +5,7 @@
/**
* The template for displaying the footer.
*
* Contains the closing of the id=main div and all content
* Contains the closing of the #wrapper div and all content
* after. Calls sidebar-footer.php for bottom widgets.
*
* @package WordPress
@ -14,13 +14,17 @@
*/
?>
<div class="push">
</div>
</div><!--#wrapper-->
</div><!-- #push -->
<div id="menu"><?php /* Our navigation menu. If one isn't filled out, wp_nav_menu falls back to wp_page_menu. The menu assiged to the primary position is the one used. If none is assigned, the menu with the lowest ID is used. */ ?>
<?php wp_nav_menu( array( 'container_class' => 'menu-footer', 'theme_location' => 'primary' ) ); ?></div>
<?php wp_nav_menu( array( 'container_class' => 'menu-footer', 'theme_location' => 'primary' ) ); ?>
</div> <!-- #menu -->
<div id="footer">
<?php wp_footer();?>
<?php if(melville_footer == show) {echo '<p class="credits">Made by <a href="http://madebyraygun.com">Raygun</a>, powered by <a href="http://wordpress.org/" rel="generator">WordPress</a></p>';}?>
</div><!--/footer-->
</div><!--#wrapper-->
</body>
</html>