I think I found the off canvas problem
authorIan Weller <ian@gaslightmedia.com>
Thu, 10 Nov 2016 16:37:44 +0000 (11:37 -0500)
committerIan Weller <ian@gaslightmedia.com>
Thu, 10 Nov 2016 16:41:26 +0000 (11:41 -0500)
I found out there were some end div tags in the footer that didn't apply to
the blog, jut the content pages.  I changed the footer and moved the end
main and div tags and moved them into the right files.

archive.php
footer.php
front-page.php
home.php
index.php
single.php

index 70fc249..24bd030 100644 (file)
@@ -43,7 +43,8 @@
         </div>
         <?php get_template_part('parts/blog-sidebar-r'); ?>
     </div>
-s<?php get_footer(); ?>
+</main><!--End of main-->
+<?php get_footer(); ?>
 
 
 
index e99ff6e..a380596 100644 (file)
@@ -1,6 +1,4 @@
-                </main><!--End of main-->
-            </div><!--/#content-wrapper-->
-        </div><!--/.row container-->
+                
         <footer>
             <?php if (is_active_sidebar('sidebar-f')) :?>
             <?php dynamic_sidebar('sidebar-f');?>
index f09c24a..c404b7d 100644 (file)
@@ -21,4 +21,7 @@
             <div id="block-wrap" class="row collapse">                
                 <?php get_template_part('parts/glm-blocks'); ?>
             </div>
+    </main><!--End of main-->
+</div><!--/#content-wrapper-->
+</div><!--/.row container-->
 <?php get_footer(); ?>
index 03e0a54..c2b4b40 100644 (file)
--- a/home.php
+++ b/home.php
@@ -42,6 +42,8 @@
             <?php endif;?>
         </div>
         <?php get_template_part('parts/blog-sidebar-r'); ?>
+    </div>
+</main><!--End of main-->    
 <?php get_footer(); ?>
 
 
index 2ed3057..9a88549 100644 (file)
--- a/index.php
+++ b/index.php
@@ -30,6 +30,9 @@
                 <?php get_template_part('parts/content-section'); ?>
             </div>
         </div>
+    </main><!--End of main-->
+    </div><!--/#content-wrapper-->
+</div><!--/.row container-->
                 
     
 
index 8b24016..272a3c4 100644 (file)
@@ -66,5 +66,6 @@
             <?php get_template_part('parts/blog-sidebar-r'); ?>
         <?php } ?>    
     </div>
+</main><!--End of main-->        
     <?php get_footer(); ?>