Move wp_footer call to fix off-canvas display issue
authorLaury GvR <laury@gaslightmedia.com>
Tue, 5 Nov 2019 14:54:18 +0000 (09:54 -0500)
committerLaury GvR <laury@gaslightmedia.com>
Tue, 5 Nov 2019 14:54:18 +0000 (09:54 -0500)
Wp_footer was called one element too deeply causing the off-canvas
menu to display incorrectly.

footer.php

index 9f0cb08..a88e10b 100644 (file)
                     <span class="bullet"> &#8226; </span>
                     <span> All Rights Reserved.</span>
                 </div>
-                <a class="exit-off-canvas"></a>
             </div><!--/#page-wrapper-->
+        <a class="exit-off-canvas"></a>
         </div><!--End of inner-wrap-->
       </div><!--End of off-canvas-->
-  <?php wp_footer();?>
   </body>
+  <?php wp_footer();?>
 </html>