788ba311 by Jeff Balicki

qa

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent acca110d
...@@ -15436,9 +15436,9 @@ body { ...@@ -15436,9 +15436,9 @@ body {
15436 width: 100%; 15436 width: 100%;
15437 } 15437 }
15438 .branding .navbar-brand { 15438 .branding .navbar-brand {
15439 margin-right: 0.625rem; 15439 margin-right: 0rem;
15440 width: 7.9375rem; 15440 width: 127px;
15441 height: 3.3125rem; 15441 height: 52.53px;
15442 } 15442 }
15443 @media only screen and (max-width: 48.875rem) { 15443 @media only screen and (max-width: 48.875rem) {
15444 .branding .navbar-brand { 15444 .branding .navbar-brand {
...@@ -15447,6 +15447,9 @@ body { ...@@ -15447,6 +15447,9 @@ body {
15447 height: 3.75rem; 15447 height: 3.75rem;
15448 } 15448 }
15449 } 15449 }
15450 .branding .navbar-brand img {
15451 width: 100%;
15452 }
15450 15453
15451 #main-nav { 15454 #main-nav {
15452 box-shadow: 0rem 0.1875rem 0.375rem rgba(0, 0, 0, 0.1607843137); 15455 box-shadow: 0rem 0.1875rem 0.375rem rgba(0, 0, 0, 0.1607843137);
......
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
...@@ -31,12 +31,14 @@ if ( ! has_custom_logo() ) { ?> ...@@ -31,12 +31,14 @@ if ( ! has_custom_logo() ) { ?>
31 } else { 31 } else {
32 $custom_logo_id = get_theme_mod( 'custom_logo' ); 32 $custom_logo_id = get_theme_mod( 'custom_logo' );
33 $logo = wp_get_attachment_image_src( $custom_logo_id , 'full' ); ?> 33 $logo = wp_get_attachment_image_src( $custom_logo_id , 'full' ); ?>
34 <a rel="home" href="<?php echo esc_url( home_url( '/' ) ); ?>" itemprop="url"> 34 <a rel="home" class="navbar-brand" href="<?php echo esc_url( home_url( '/' ) ); ?>" itemprop="url">
35 <?php if ( has_custom_logo() ) { 35 <?php if ( has_custom_logo() ) {
36 echo '<img width="150" height="62" src="' . esc_url( $logo[0] ) . '" alt="' . get_bloginfo( 'name' ) . '">'; 36 echo '<img width="150" height="62" src="' . esc_url( $logo[0] ) . '" alt="' . get_bloginfo( 'name' ) . '">';
37 } else { 37 } else {
38 echo '<h1>' . get_bloginfo('name') . '</h1>'; 38 echo '<h1>' . get_bloginfo('name') . '</h1>';
39 } 39 }
40 } 40 }
41
42
41 ?> 43 ?>
42 </a> 44 </a>
......
...@@ -29,15 +29,18 @@ ...@@ -29,15 +29,18 @@
29 position: relative; 29 position: relative;
30 width: 100%; 30 width: 100%;
31 .navbar-brand{ 31 .navbar-brand{
32 margin-right:0.625rem ; 32 margin-right:0rem ;
33 width: 7.9375rem; 33 width:127px;
34 height: 3.3125rem; 34 height: 52.53px;
35 // display: inline-block; 35 // display: inline-block;
36 @media only screen and (max-width: 48.875rem) { 36 @media only screen and (max-width: 48.875rem) {
37 margin-right:1.25rem ; 37 margin-right:1.25rem ;
38 width: 7.4375rem; 38 width: 7.4375rem;
39 height: 3.75rem; 39 height: 3.75rem;
40 } 40 }
41 img{
42 width: 100%;
43 }
41 } 44 }
42 } 45 }
43 #main-nav{ 46 #main-nav{
......
...@@ -2,5 +2,5 @@ ...@@ -2,5 +2,5 @@
2 Theme Name: MSF CA Child 2 Theme Name: MSF CA Child
3 Author: Tenzing Communications 3 Author: Tenzing Communications
4 Template: msf-ca 4 Template: msf-ca
5 Version: 1.0.59 5 Version: 1.0.60
6 */ 6 */
...\ No newline at end of file ...\ No newline at end of file
......