Reputation: 1114
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
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