diff --git a/Project-Unite/Views/Shared/_Layout.cshtml b/Project-Unite/Views/Shared/_Layout.cshtml index 6530022..b484e02 100644 --- a/Project-Unite/Views/Shared/_Layout.cshtml +++ b/Project-Unite/Views/Shared/_Layout.cshtml @@ -14,9 +14,9 @@ @{ string style = ""; - if(ViewBag.Model != null) + if(ViewBag.Banner != null) { - style = "background-image: url(\"" + ViewBag.Model + "\") cover;"; + style = "background-image: url(\"" + ViewBag.Banner + "\") cover;"; } }