I have the folowing in my BundleConfig.cs file:
bundles.Add(new StyleBundle("~/Content/css").Include(
"~/Content/mainstyle.css",
"~/Content/layout/style.css", /* <<< HERE, the folder is different */
"~/Content/bootstrap.css",
"~/Content/site.css"));
and in the ~/Content/layout/style.css
file:
#page {
width: 1000px;
margin: 0 auto;
background: url(images/img04.jpg) repeat-y left top;
}
if we know that the bundle will combine all css in a single one (?!) how would the server see the link of the img04.img (url(images/img04.jpg)
), as Content/images/
, Content/css/images/
or Content/layout/images
?