Wrapped the main-content in a div class row
authorLaury GvR <laury@gaslightmedia.com>
Mon, 12 Dec 2016 14:07:51 +0000 (09:07 -0500)
committerLaury GvR <laury@gaslightmedia.com>
Mon, 12 Dec 2016 14:07:51 +0000 (09:07 -0500)
The footer had become invisible because the main content partial
was not in a row. I added a div with class row around it, and now
it has been fixed.

sections/interior-page.php

index 244cf9c..3caa85e 100644 (file)
                                         </div>
                                     </div>
                                 </div>
-                               <?php } else {
-                                    get_template_part('parts/main-content');
-                                }
-                            ?>
-                            </div>
+                            <?php } else { ?>
+                                <div class="row">
+                                    <?php get_template_part('parts/main-content'); ?>
+                                </div>
+                            <?php } ?>
                         </div>
                     </main>
\ No newline at end of file