From 0a11efded4dbb382079b6fac4a6cca40719b0191 Mon Sep 17 00:00:00 2001 From: Jason King Date: Sun, 23 Apr 2017 14:06:09 +0930 Subject: [PATCH] Update old BS3 class .img-responsive to .img-fluid As per #293 by ErinPo --- inc/extras.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/extras.php b/inc/extras.php index 16c8882..51ec124 100644 --- a/inc/extras.php +++ b/inc/extras.php @@ -67,7 +67,7 @@ if ( ! function_exists( 'change_logo_class' ) ) { */ function change_logo_class( $html ) { - $html = str_replace( 'class="custom-logo"', 'class="img-responsive"', $html ); + $html = str_replace( 'class="custom-logo"', 'class="img-fluid"', $html ); $html = str_replace( 'class="custom-logo-link"', 'class="navbar-brand custom-logo-link"', $html ); $html = str_replace( 'alt=""', 'title="Home" alt="logo"' , $html );