Header style, $ --> jQuery, homepage title
authorLaury GvR <laury@gaslightmedia.com>
Tue, 14 Oct 2014 20:44:49 +0000 (16:44 -0400)
committerLaury GvR <laury@gaslightmedia.com>
Tue, 14 Oct 2014 20:44:49 +0000 (16:44 -0400)
assets/img/images/orangeLine.png [new file with mode: 0644]
assets/img/orangeLine.png [deleted file]
css/app.css
front-page.php
header.php
js/app.js
scss/site/_structure.scss

diff --git a/assets/img/images/orangeLine.png b/assets/img/images/orangeLine.png
new file mode 100644 (file)
index 0000000..8bb5d2c
Binary files /dev/null and b/assets/img/images/orangeLine.png differ
diff --git a/assets/img/orangeLine.png b/assets/img/orangeLine.png
deleted file mode 100644 (file)
index 8bb5d2c..0000000
Binary files a/assets/img/orangeLine.png and /dev/null differ
index 613587a..8aea218 100644 (file)
@@ -13566,6 +13566,15 @@ ul.global-nav li + li::before {
   margin-top: 45px;
   margin-left: 50px; }
 
+@media (max-width: 640px) {
+  #glmLogo {
+    margin: 10px 0 0 0; }
+  #glmTop {
+    margin-left: auto;
+    margin-right: auto;
+    float: none;
+    text-align: center; } }
+
 .glmSocial {
   width: 250px;
   color: #f48228;
@@ -13736,9 +13745,9 @@ aside#sidebar a {
   color: #f48228;
   font-weight: bold; }
 
-article header h1 {
-  border-bottom: solid 1px #f48228; }
-
+/*article header h1 {
+    border-bottom: solid 1px $secondary-color;
+}*/
 article h2 {
   color: #0568b3; }
 
@@ -13806,7 +13815,11 @@ article h2 {
 
 .home_section_title {
   font-family: "Big Caslon", "Book Antiqua", "Palatino Linotype", Georgia, serif;
-  font-weight: normal; }
+  font-weight: normal;
+  border-bottom: 1px solid #f48228;
+  width: 70%;
+  margin-left: auto;
+  margin-right: auto; }
 
 .homepage_box {
   height: 215px;
@@ -13822,7 +13835,7 @@ article h2 {
   font-size: 18px;
   color: #f48228; }
 
-.homepage_box:hover .homepage_box_title, .homepage_box:hover .homepage_box_desc {
+.homepage_box_title .homepage_box:hover .homepage_box_title, .homepage_box:hover .homepage_box_desc {
   color: white; }
 
 .homepage_box_desc {
@@ -13950,6 +13963,9 @@ article h2 {
   margin-right: auto !important;
   float: none; }
 
+.slideshowlink {
+  display: none; }
+
 /**
      * 4.2 Posts
      * ------------------------------------
index 377ed35..cb38176 100644 (file)
@@ -16,7 +16,10 @@ get_header(); ?>
         <?php while (have_posts()) : the_post(); ?>
             <article <?php post_class() ?> id="post-<?php the_ID(); ?>">
                 <header>
-                    <h1 class="entry-title"><?php the_title(); ?></h1>
+                
+                <h1 class='entry-title'>
+                <?php if (!is_front_page() ) { echo the_title();} ?>
+                </h1>
                 </header>
                 <?php do_action('foundationPress_page_before_entry_content'); ?>
                 <div class="entry-content">
@@ -95,6 +98,7 @@ get_header(); ?>
 <!--                        </a>-->
                     </div>
                     <div id="homepage_problem_solvers" class="row">
+                        <h1 class="home_section_title">Problem Solvers</h1>
                         <?php the_block('Homepage Problem Solvers Block'); ?>
                     </div> <!-- Problem Solvers -->
                     <?php the_content(); ?>
index fb22f8b..a904174 100644 (file)
@@ -83,3 +83,4 @@
 
 <section class="container" role="document">
     <?php do_action('foundationPress_after_header'); ?>
+<?php do_action('foundationPress_after_header'); ?>
index 42fb140..8dbdb25 100644 (file)
--- a/js/app.js
+++ b/js/app.js
@@ -10,6 +10,6 @@ jQuery(document).ready(function(){
 });
 
 ;// Joyride demo
-jQuery$('#start-jr').on('click', function() {
+jQuery('#start-jr').on('click', function() {
   jQuery(document).foundation('joyride','start');
 });
\ No newline at end of file
index 5f0ffb0..ee15df8 100644 (file)
@@ -117,6 +117,17 @@ ul.global-nav li + li::before {
     margin-top: 45px;
     margin-left: 50px;
 }
+@media (max-width:640px) {
+    #glmLogo {
+        margin: 10px 0 0 0;
+    }
+    #glmTop{
+        margin-left: auto;
+        margin-right: auto;
+        float: none;
+        text-align: center;
+    }
+}
 
 .glmSocial {
     width: 250px;
@@ -296,9 +307,9 @@ aside#sidebar a {
     color: $secondary-color;
     font-weight: bold;
 }
-article header h1 {
+/*article header h1 {
     border-bottom: solid 1px $secondary-color;
-}
+}*/
 article h2 {
     color: $primary-color;
 }
@@ -389,7 +400,12 @@ article h2 {
     .home_section_title {
         font-family: "Big Caslon", "Book Antiqua", "Palatino Linotype", Georgia, serif;
         font-weight: normal;
-    }    
+        border-bottom: 1px solid $secondary-color;
+        width: 70%;
+        margin-left: auto;
+        margin-right: auto;
+        
+    }
     .homepage_box {
         height: 215px;
         border: 1px black solid;
@@ -404,6 +420,7 @@ article h2 {
         font-size: 18px;
         color: $secondary-color;
     }
+    .homepage_box_title
     .homepage_box:hover .homepage_box_title,
     .homepage_box:hover .homepage_box_desc {
         color: white;
@@ -542,7 +559,9 @@ article h2 {
         margin-right: auto !important;
         float: none;
     }
-    
+    .slideshowlink {
+        display:none;
+    }
 
 
     /**