Changes to header link & social, slideshow text
authorLaury GvR <laury@gaslightmedia.com>
Thu, 8 Nov 2018 21:46:11 +0000 (16:46 -0500)
committerLaury GvR <laury@gaslightmedia.com>
Thu, 8 Nov 2018 21:46:11 +0000 (16:46 -0500)
Client requests
- Remove slideshow caption
- Remove social icons from header
- Add "Meet Here" link in the header

css/app.css
header.php
scss/_page.header.scss
scss/_slideshow.scss
style.css

index 4c9f38d..b922281 100644 (file)
@@ -6729,11 +6729,15 @@ header#page-header {
         @media (max-width: 1055px) {
           header#page-header #top #logo img {
             padding-top: 50px; } }
-    header#page-header #top .social {
+    header#page-header #top .meet-here {
       position: absolute;
-      left: 0; }
-      header#page-header #top .social img {
-        margin: 0 3px; }
+      left: 0;
+      text-align: center; }
+      header#page-header #top .meet-here a {
+        color: white;
+        text-decoration: underline; }
+    header#page-header #top .social {
+      display: none !important; }
     header#page-header #top .search-top {
       position: absolute;
       right: 0; }
@@ -7357,18 +7361,7 @@ main.search-results #head-img {
       text-align: right; }
 
 h2#slide-text {
-  font-family: 'Kaushan Script';
-  font-size: 3rem;
-  color: #FFFFFF;
-  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
-  position: relative;
-  margin-top: -130px; }
-  @media only screen and (min-width:40em) and (max-width:64em) {
-    h2#slide-text {
-      margin-top: -75px; } }
-  @media (max-width: 780px) {
-    h2#slide-text {
-      display: none; } }
+  display: none !important; }
 
 /* NextGen Gallery */
 .ngg-gallery-thumbnail, .ngg-gallery-thumbnail-box {
index b110246..84b635f 100644 (file)
@@ -4,7 +4,7 @@
     <meta charset="utf-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
     <title><?php wp_title(); ?></title>
-    <link rel="stylesheet" href="<?php echo get_stylesheet_directory_uri() ; ?>/css/app.css?v=1.2.36">
+    <link rel="stylesheet" href="<?php echo get_stylesheet_directory_uri() ; ?>/css/app.css?v=1.2.39">
       <link rel="shortcut icon" href="<?php echo get_stylesheet_directory_uri(); ?>/favicon.ico">
     <link href='//fonts.googleapis.com/css?family=Open+Sans:400,400italic,700' rel='stylesheet' type='text/css'>
     <link href='//fonts.googleapis.com/css?family=Kaushan+Script' rel='stylesheet' type='text/css'>
@@ -65,15 +65,8 @@ Note 2: 'Nb cols' parameter for Bootstrap only.
                     <header id="page-header">
 
                         <div id="top" class="row collapse">
-                            <div class="large-4 columns show-for-large-up social">
-                                <a target="_blank" href="https://www.facebook.com/pages/Mount-Pleasant-Area-Convention-and-Visitors-Bureau/55686552727"><img alt="Facebook" src="<?php bloginfo('template_url'); ?>/assets/facebook-icon.png"></a>
-                                <a target="_blank" href="https://twitter.com/MtPleasantCVB"><img alt="Twitter" src="<?php bloginfo('template_url'); ?>/assets/twitter-icon.png"></a>
-                                <a target="_blank" href="http://www.youtube.com/user/mountpleasantwow"><img alt="YouTube" src="<?php bloginfo('template_url'); ?>/assets/youtube-icon.png"></a>
-                                <a target="_blank" href="https://instagram.com/mtpleasantcvb"><img alt="Instagram" src="<?php bloginfo('template_url'); ?>/assets/instagram.png"></a>
-                                <?php $newsPage = get_post(5158);?>
-                                <?php if($newsPage):?>
-                                <a href="<?php echo get_page_link($newsPage->ID);?>"><img alt="Blog" src="<?php bloginfo('template_url'); ?>/assets/blog-icon.png"></a>
-                                <?php endif;?>
+                            <div class="large-4 columns show-for-large-up meet-here">
+                                <a href="<?php echo get_permalink(12367);?>">Meet Here</a>
                             </div>
                             <div id="logo" class="medium-8 large-4 columns show-for-medium-up text-center">
                                 <a href="<?php bloginfo('url'); ?>"><img class="text-center" alt="Mount Pleasant logo" src="<?php bloginfo('template_url'); ?>/assets/mt-pleasant-pure-mi-logo.png"></a>
index 5ff25b1..3a546e3 100644 (file)
@@ -30,13 +30,23 @@ header#page-header {
                 }
             }
         }
-        .social {
+        .meet-here {
             position: absolute;
             left: 0;
-            img {                
-                margin: 0 3px;
+            text-align: center;
+            a {
+                color: white;
+                text-decoration: underline;
             }
         }
+        .social {
+            display: none !important;
+            // position: absolute;
+            // left: 0;
+            // img {                
+            //     margin: 0 3px;
+            // }
+        }
         .search-top {
             position: absolute;
             right: 0;
index de233ba..7d403ac 100644 (file)
     }
 }
 h2#slide-text {
-    font-family: 'Kaushan Script';
-    font-size: rem-calc(48);
-    color: $white;
-    text-shadow: 1px 1px 2px rgba($black, 0.9);
-    position: relative;
-//    top: -30px;
-    margin-top: -130px;
-    @media #{$medium-only} {
-        margin-top: -75px;
-    }
-    @media (max-width: 780px) {
-        display: none;
-    }
+    // font-family: 'Kaushan Script';
+    // font-size: rem-calc(48);
+    // color: $white;
+    // text-shadow: 1px 1px 2px rgba($black, 0.9);
+    // position: relative;
+    // margin-top: -130px;
+    // @media #{$medium-only} {
+    //     margin-top: -75px;
+    // }
+    //@media (max-width: 780px) {
+        display: none !important;
+    //}
 }
index 9d12a70..ef42118 100644 (file)
--- a/style.css
+++ b/style.css
@@ -3,5 +3,5 @@ Theme Name: MountPleasantCVB
 Author: Gaslight Media
 Author URI: http://www.gaslightmedia.com
 Description: A theme for MountPleasantCVB
-Version: 1.2.38
+Version: 1.2.39
 */