I made a few changes
authorIan Weller <ian@gaslightmedia.com>
Mon, 6 Feb 2017 21:41:34 +0000 (16:41 -0500)
committerIan Weller <ian@gaslightmedia.com>
Mon, 6 Feb 2017 21:41:34 +0000 (16:41 -0500)
I fixed the problem with the no-right-sidebar.php.  Someone made it so
it only has a medium-9 instead of medium-8.  I got that fixed.  I also
made some adjustments to allow the contact sidebar to appear under the
nav sidebar in medium view.

no-right-sidebar.php
page.php
parts/sidebar.php
sidebar.php

index 1e23e8c..b459968 100644 (file)
@@ -7,7 +7,7 @@ Template Name: No Right Sidebar
     <main class="page-inside">
         <div class="row">
             <?php get_sidebar();?>
-            <div id="content-bulk" class="small-12 medium-9 columns" >
+            <div id="content-bulk" class="small-12 medium-8 large-9 columns" >
                 <div id="con" class="row">
                     <div class="small-12 columns">
                         <?php get_template_part('parts/bread-crumbs');?>
index ca375a4..657f532 100644 (file)
--- a/page.php
+++ b/page.php
@@ -14,6 +14,8 @@
                     </div>
                 </div>
             </div>
-            <?php get_template_part('parts/sidebar');?>
+            <div class="show-for-large-up">
+                <?php get_template_part('parts/sidebar');?>
+            </div>
         </div>
 <?php get_footer(); ?>
index 2fe83bc..5b2a364 100644 (file)
@@ -12,7 +12,7 @@
 </div>
 <?php } else { ?>
 
-<div id="contact" class="large-3 columns show-for-large-up">
+<div id="contact" class="medium-4 large-3 columns">
     <p><?php echo the_field('sidebar'); ?></p>
 </div>
 <?php } ?>  
\ No newline at end of file
index acb03b9..bd03b78 100644 (file)
@@ -3,5 +3,8 @@
     <div class="row collapse opensearchserver.ignore">
         <?php glm_side_menu(); ?>
     </div>
+    <div class="show-for-medium-down">
+        <?php get_template_part('parts/sidebar');?>
+    </div>
 </div>
 <?php } ?>