From: Anthony Talarico Date: Wed, 21 Oct 2015 17:03:25 +0000 (-0400) Subject: Changed footer background image size from contain to 100% to fix safari display issues X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/?a=commitdiff_plain;h=883dd114b19b5ad2d2ddbd28f839b0ff6d3dc7d0;p=WP-Themes%2Fglmthemes%2Fshipwreck-theme.git Changed footer background image size from contain to 100% to fix safari display issues --- diff --git a/css/app.css b/css/app.css index 935597d..2eb2471 100644 --- a/css/app.css +++ b/css/app.css @@ -6714,7 +6714,7 @@ body .shadow-wrapper { body #page-wrapper { background: url(../assets/footer-bkgrd.jpg) no-repeat; background-position: bottom center; - background-size: contain; } + background-size: 100%; } header.main { background: #2f4d4f; diff --git a/scss/_body.scss b/scss/_body.scss index 82582ce..bdfc958 100644 --- a/scss/_body.scss +++ b/scss/_body.scss @@ -13,6 +13,6 @@ body { #page-wrapper { background: url(../assets/footer-bkgrd.jpg) no-repeat; background-position: bottom center; - background-size: contain; + background-size: 100%; } }