I'm using the source code from this site to build my website using rails.
http://blackrockdigital.github.io/startbootstrap-stylish-portfolio/
According to the tutorial I'm following I'm supposed to include this code
<link href="https://blackrockdigital.github.io/startbootstrap-stylish-portfolio/css/stylish-portfolio.css" rel="stylesheet">
in views/layouts/application.html.erb to get the image, which works.
My question is how do I use my own image as opposed to pulling it off the web?
-----edited-----
@sajan I did what you said and changed the css header like so
.header {
display: table;
position: relative;
width: 100%;
height: 100%;
background: url(../assets/images/img/bg.jpg) no-repeat center center scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
}
but the image won't show. Any idea what else I could be doing wrong?