View Full Version : need to absolute position my background....


_shadowfyre_
06-14-2003, 02:45 PM
here's the code i have for the background:

body
{ background-color: #000000;
background-image:url(mainimage.gif);
background-repeat:repeat-y;
background-position:left:70px; top:0px;

everything's fine except it won't let me absolute position it no matter what i do.. >< help please?

kittycat
06-14-2003, 03:15 PM
body
{ background-color: #000000;
background-image:url(mainimage.gif);
background-repeat:repeat-y;
background-position: 70px 0px;

If it's not in the position you want like that, try switching the 70 and 0 around.

_shadowfyre_
06-14-2003, 03:32 PM
yay thank you it works now =D