LifeScript
LifeScript

Reputation: 1114

How to set the background image in asp.net mvc4

At the head I removed the master page reference

@{
Layout = null
}

in my head css:

 html { 
         background-image:url('Images\BGP.jpg');
}

But nothing changed, can anybody give me some suggestions?

Thanks

Upvotes: 0

Views: 2775

Answers (1)

SLaks
SLaks

Reputation: 888293

HTTP URLs use forward slashes.

They're also relative to the calling file; you probably want a domain-relative path that starts with /.

Upvotes: 2

Related Questions