From 1cac3ac592c34ecf373f034c2103a040492ce216 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 25 Mar 2017 17:16:53 -0400 Subject: [PATCH] fix backdrops --- Project-Unite/Views/Shared/_Layout.cshtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project-Unite/Views/Shared/_Layout.cshtml b/Project-Unite/Views/Shared/_Layout.cshtml index 388070c..4146e13 100644 --- a/Project-Unite/Views/Shared/_Layout.cshtml +++ b/Project-Unite/Views/Shared/_Layout.cshtml @@ -3,7 +3,7 @@ string style = ""; if (ViewBag.Banner != null) { - style = "background-image: url(\"" + ViewBag.Banner + "\");background-size:cover;"; + style = "background: url(\"" + ViewBag.Banner + "\") center center fixed;background-size:cover;"; } }