Ashton
Ashton

Reputation: 13

Add a Background Image for Bootstrap Jumbotron

New to Bootstrap and I'm trying to add a background image to the jumbotron. The image is not appearing.

I've uploaded the files here: http://www.ashton.me/lab/practice001/

Here's my custom CSS:

.jumbotron{
  background-image: url('images/wormhole.jpg');
  color: white;
}

Upvotes: 1

Views: 1224

Answers (1)

Refilon
Refilon

Reputation: 3499

EDIT: I know what the problem is! Change:

background-image: url('images/wormhole.jpg');

TO:

background-image: url('../images/wormhole.jpg');

Upvotes: 1

Related Questions