Make the side bar column smaller
authorSteve Sutton <steve@gaslightmedia.com>
Fri, 9 Sep 2016 21:04:06 +0000 (17:04 -0400)
committerSteve Sutton <steve@gaslightmedia.com>
Fri, 9 Sep 2016 21:04:06 +0000 (17:04 -0400)
going to 2 and 10 for medium up

index.php

index e6732af..625da63 100644 (file)
--- a/index.php
+++ b/index.php
@@ -9,14 +9,14 @@
                     <h1><?php the_title() ;?></h1>
                 </div>
             </div>
+
             <div class="row large-collapse">
               <?php if ( is_page(154) || is_page(156) || is_in_tree(154) || is_in_tree(156)){ ?>
-               <div id="side-bar-nav" class="large-3 columns show-for-large-up">
-                    <?php get_sidebar(); ?> 
+               <div id="side-bar-nav" class="large-2 columns show-for-large-up">
+                    <?php get_sidebar(); ?>
                 </div>
 
-                <div id="main-content" class="small-12 large-9 columns">
+                <div id="main-content" class="small-12 large-10 columns">
                 <?php  } else { ?>
                       <div id="main-content" class="small-12 columns">
                 <?php } ?>
                 </div>
             </div>
         </div>
-        
+
 <?php get_footer(); ?>
 <script>
-    
-$(document).ready(function () { 
+
+$(document).ready(function () {
     $(".glm-member-list-image").each(function() {
         if( $(this).height() > 175){
             var height_difference = 175 - $(this).height();
             height_difference = height_difference / 2;
             //height_difference = Math.abs(height_difference) * -1;
             $(this).css("margin-top",  height_difference);
-        }    
+        }
     });
 });
 </script>