diff --git a/header.php b/header.php index 451b73c..db9e2a6 100755 --- a/header.php +++ b/header.php @@ -47,7 +47,11 @@ - + + + + + @@ -64,7 +68,6 @@ ); ?> - diff --git a/inc/extras.php b/inc/extras.php index c44c035..49f54f9 100644 --- a/inc/extras.php +++ b/inc/extras.php @@ -37,3 +37,12 @@ function adjust_body_class( $classes ) { return $classes; } + +// Filter custom logo with correct classes +add_filter('get_custom_logo','change_logo_class'); +function change_logo_class($html) +{ + $html = str_replace('class="custom-logo"', 'class="img-responsive"', $html); + $html = str_replace('class="custom-logo-link"', 'class="navbar-brand" custom-logo-link', $html); + return $html; +}