Reputation: 21
I do not know what the problem is. I made a style.css and used this as my code
.jumbotron {
background-image:url(images/bikebg.jpg);
margin-top:-20px
}
before putting the background in the images folder, it worked fine. But since I changed it, it will no longer work. The site is live here http://bikesite.web44.net/bikes.html
Upvotes: 0
Views: 1084
Reputation: 15777
your folder path was wrong
try
url(../images/bikebg.jpg);
Upvotes: 1
Reputation:
try this
.jumbotron {
background-image:url(../images/bikebg.jpg);
margin-top:-20px
}
Upvotes: 3