Can you identify the issue in the CSS code provided below?
body {
background-image: #000 url(http://www.lifelinedirect.com/images/backgrounds/main-bg-42.jpg) repeat;
color: #898989;
font-family: 'Roboto', Arial, Verdana;
font-weight: 400;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
font-size:13px;
line-height:21px;
}
I have attempted the following variations but they are still not functioning:
background-image: #000 url("http://www.lifelinedirect.com/images/backgrounds/main-bg-42.jpg") repeat;
background-image: #000 url('http://www.lifelinedirect.com/images/backgrounds/main-bg-42.jpg') repeat;
background-image: url("http://www.lifelinedirect.com/images/backgrounds/main-bg-42.jpg") repeat;
background: url("http://www.lifelinedirect.com/images/backgrounds/main-bg-42.jpg") repeat;
background: url(http://www.lifelinedirect.com/images/backgrounds/main-bg-42.jpg) repeat;