Background Image no Repeat

I have tried placing a background on my page using HTML, the image shows up but repeats so I am trying to put a code into my css file but then the image doesnt show up at all, can anyone help please?

this is my css code

body {background-image: url(http://www.blitz-it.co.uk/background.jpg); background-repeat: no-repeat;}

Hi,

I assumes the image exists because that url gives a 404.

Otherwise your code should be working as far as I can see although you could use shorthand to make it more concise:


body{
background: url(background.jpg) no-repeat;}
}

It seems to be working now anyway: http://www.blitz-it.co.uk/

thank you yes it is working now, thank for your help