Add businessname to off-canvas display above adress
authorLaury GvR <laury@gaslightmedia.com>
Tue, 16 Oct 2018 17:58:25 +0000 (13:58 -0400)
committerLaury GvR <laury@gaslightmedia.com>
Tue, 16 Oct 2018 17:58:25 +0000 (13:58 -0400)
css/app.css
scss/plugins/_blocks.scss
sections/footer.php
sections/off-canvas.php

index 5b55ed1..96d3fbd 100644 (file)
@@ -7747,7 +7747,7 @@ main.owners-home {
       position: relative; }
       .blocks .block-overlay .block-overlay-center .block-title-center {
         color: white;
-        font-size: 28px;
+        font-size: 24px;
         font-weight: normal;
         line-height: 1;
         margin: 0;
index 932de77..783f473 100644 (file)
@@ -72,7 +72,7 @@
             position: relative;
             .block-title-center{
                 color: white;
-                font-size: 28px;
+                font-size: 24px;
                 font-weight: normal;
                 line-height: 1;
                 margin: 0;
index cb3b50b..5712299 100644 (file)
@@ -8,7 +8,7 @@
         </div> -->
         <div id="footer-address" class="large-12 columns show-for-large-up">
             <?php if ( function_exists( 'glm_get_clientinfo_option' ) ) :?>
-            <?php if ( glm_get_clientinfo_option( 'businessName' ) ) :?>
+                <?php if ( glm_get_clientinfo_option( 'businessName' ) ) :?>
                 <div><?php echo glm_get_clientinfo_option( 'businessName' );?></div>
                 <?php endif;?>
                 <?php if ( glm_get_clientinfo_option( 'address' ) ) :?>
index 1110a96..53fee83 100644 (file)
@@ -7,6 +7,9 @@
                         </div>
                         <?php if (function_exists('glm_get_clientinfo_option')) :?>
                             <ul>
+                                <?php if ( glm_get_clientinfo_option( 'businessName' ) ) :?>
+                                <div><?php echo glm_get_clientinfo_option( 'businessName' );?></div>
+                                <?php endif;?>
                                 <?php if (glm_get_clientinfo_option('address')) :?>
                                 <li><?php echo glm_get_clientinfo_option('address');?></li>
                                 <?php endif;?>