View Full Version : background positioning ><


_shadowfyre_
09-09-2003, 09:55 AM
In my external stylesheet i have this:

body
{ background-color: #626262;
background-image:url(images/tb.gif);
background-repeat:repeat-y;
background-position:absolute; left:253px; top:0px;
background-attachment: fixed;

everything works fine except it still stays at the top left corner and won't go to the left by 253px like i want it to. i can't figure out what i did wrong in the coding but maybe someone else can. =P

Lissa
09-09-2003, 12:09 PM
Did you forget this?


{ background-color: #626262;
background-image:url(images/tb.gif);
background-repeat:repeat-y;
background-position:left:253px; top:0px;
background-attachment: fixed; }

And I don't think you need the "absolute" attribute.