search and blog problem solving
authorIan Weller <ian@gaslightmedia.com>
Wed, 2 Sep 2015 15:26:53 +0000 (11:26 -0400)
committerIan Weller <ian@gaslightmedia.com>
Wed, 2 Sep 2015 15:26:53 +0000 (11:26 -0400)
css/app.css
header.php
scss/_blog.scss
scss/_main.scss
search.php

index afb48fc..6f96119 100644 (file)
@@ -6752,9 +6752,9 @@ main.page-inside #content-wrapper {
       main.page-inside #content-wrapper .featured-image {
         min-height: 200px; } }
   main.page-inside #content-wrapper .gradient {
-    background: -webkit-linear-gradient(center, transparent 0%, #2f4d4f 100%);
+    background: -webkit-linear-gradient(top, transparent 0%, #2f4d4f 100%);
     background: -moz-linear-gradient(center top, transparent 0%, #2f4d4f 100%);
-    background: -ms-linear-gradient(center, transparent 0%, #2f4d4f 100%);
+    background: -ms-linear-gradient(top, transparent 0%, #2f4d4f 100%);
     height: 200px;
     margin-top: -100px; }
   main.page-inside #content-wrapper .headline {
@@ -7085,7 +7085,7 @@ input[type="submit"].blogbutton {
  }
 
 #blog-side-info {
-  padding-right: 10px;
+  padding-right: 15px;
   padding-top: 10px; }
   #blog-side-info ul {
     list-style-type: none; }
index 26f6d7a..2dcb0b2 100644 (file)
@@ -78,6 +78,6 @@
                 <div class="sticky">
                     <?php get_template_part('parts/top-bar');?>
                     <?php get_template_part('parts/off-canvas-menu');?>
-                </div>
+                </div><!-- End of sticky -->
                     
                     
index b7a02e2..ae23cbb 100644 (file)
@@ -215,7 +215,7 @@ input[type="submit"].blogbutton {
     }
 }
 #blog-side-info {
-    padding-right: 10px;
+    padding-right: 15px;
     padding-top: 10px;
     ul {
         list-style-type: none;
index 3b93f31..4d2c51a 100644 (file)
@@ -52,9 +52,9 @@ main {
                 }
             }
             .gradient {
-                background: -webkit-linear-gradient(center, transparent 0%, $green 100%);
+                background: -webkit-linear-gradient(top, transparent 0%, $green 100%);
                 background: -moz-linear-gradient(center top, transparent 0%, $green 100%);
-                background: -ms-linear-gradient(center, transparent 0%, $green 100%);
+                background: -ms-linear-gradient(top, transparent 0%, $green 100%);
                 height: 200px;
                 margin-top: -100px;
             }
index 12f2771..6a7d76f 100644 (file)
@@ -1,9 +1,13 @@
 <?php get_header(); ?>
 <main class="search-results">
     <?php if (get_search_query() == "") { ?>
-    <br><h2 class="search-result-header small-12 columns">Please enter a query in the search box. </h2>
+    <div class="row">
+        <br><h1 class="search-result-header small-12 columns">Please enter a query in the search box. </h1>
+    </div>
     <?php } else { ?>
-    <br><h2 class="search-result-header small-12 columns">Search Results for "<?php echo get_search_query(); ?>"</h2>
+    <div class="row">
+        <br><h1 class="search-result-header small-12 columns">Search Results for "<?php echo get_search_query(); ?>"</h1>
+    </div>
     <div class="row">
         <div id="blog-posts-over" class="small-12 medium-9 columns">
             <?php if(have_posts()) : while(have_posts()): the_post();?>
@@ -91,6 +95,7 @@
                         </footer>
                     </article>
                 </div>
+                
             </div>
             <?php endwhile; ?>
             <div class="navigation">
                     ?>
                 </ul>
             </div>
-            <?php } ?> <!-- end empty query check -->
         </div>
-    </div>
+    </div>    
+            <?php } ?>
+        
     <?php get_footer(); ?>