View Full Version : CSS image positioning not working!!!


Brookeo20
12-04-2003, 10:19 PM
I'm working in Dreamweaver 3, and I cannot get my background image to center....does anybody know what is wrong? any tips?
thanks!



<STYLE TYPE="text/css">

body
{ background: #000000;
background-image: "cats_background.jpg";
background-repeat: no-repeat;
background-position: 50% 50%;
background-attachment: fixed; }


</STYLE>

Alcy
12-05-2003, 01:50 AM
<STYLE TYPE="text/css">

body
{ background: #000000;
background-image: url:("cats_background.jpg");
background-repeat: no-repeat;
background-position: 50% 50%;
background-attachment: fixed; }


</STYLE>

It should work now ^_^