Nolan
Nolan

Reputation: 21

Background Image not showing up in jumbotron

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

Answers (2)

Sajad Karuthedath
Sajad Karuthedath

Reputation: 15777

your folder path was wrong

try

url(../images/bikebg.jpg);  

Upvotes: 1

user3171894
user3171894

Reputation:

try this

   .jumbotron {
        background-image:url(../images/bikebg.jpg);
        margin-top:-20px
    }

Upvotes: 3

Related Questions