I am trying to put a background image to wordpress twenty thirteen theme static home page. I've created a child theme and put the following code in style.css in child theme.
body{
background:url('wp-content/uploads/2015/09/Road-604x270.jpg');
}
#main{
background:url('wp-content/uploads/2015/09/Road-604x270.jpg');
}
I have uploaded a image Road.jpg through upload media in wordpress. The file along with its created different sized files are located in the above mentioned path under wp-content. I have decided to use the original sized image which is of 604X270 pixels, but the background image is not being displayed. Am I making any mistake defining the path of the image or is their any mistake in the code itself?