css help

I am using this css code to make my background a image I have in the same directory and the text color white and if my image does not show the page will be black.

The comes up white the text comes up black and nand I want my image to repeat????????

why is this going on

body {background: #000000 url(wall.jpg) repeat: fixed;}
a:link{color:#ffff00;}
a:visited{color:#ffff00;}
p{font-size:25px;color:#ffffff;font-family:times new roman,Arial;}
h1{font-size:100px;color:#ffffff;font-family:times new roman,Arial;}
 
It problably needs to look a little more like this:
body {background: #000000; background-image:url('wall.jpg'); repeat: fixed;}
a:link{color:#ffff00;}
a:visited{color:#ffff00;}
p{font-size:25px;color:#ffffff;font-family:times new roman,Arial;}
h1{font-size:100px;color:#ffffff;font-family:times new roman,Arial;}
 
Back
Top