Ganga
Ganga

Reputation: 797

Cant change bootstrap background image

I have problem with changeing bootstrap 3 background image, as a background of .container i use image, id like to set some other image as background image so it will fill empty space's on sides.

Can i kindly ask for some help ?

Link to site

Upvotes: 0

Views: 1091

Answers (1)

Ally Rippley
Ally Rippley

Reputation: 525

Attach the image to the body element instead of an element with the class container using css.

body {
    background: url('x');
}

x can equal an absolute image path or a relative path.

this can also be implemented using inline styling directly on the body element in your html

 <body style="background:url('x')">

Upvotes: 1

Related Questions