tags:

views:

52

answers:

2

I moved this question to a new thread

+3  A: 

I think all you need to do is change the percentage 50% to center

Jimmy Stenke
Yep. And you can use "background: #EDEDED url(../images/bg-y.png) repeat-y scroll center top;" if you want to remove any ambiguity from the digits in the property (I know I always mix up whether the X or the Y axis goes first).
hollsk
`center` means `50%` according to [CSS2.1 spec on background-position](http://www.w3.org/TR/CSS2/colors.html#propdef-background-position)`center (is) Equivalent to '50%' for the horizontal position if it is not otherwise given, or '50%' for the vertical position if it is.`
Felipe Alsacreations
please check out the live version at http://www.theprizeshark.com/ to see what it looks like.
TwinPeaksMall
A: 

w3schools site is full of usefull information.

http://www.w3schools.com/css/pr_background-position.asp

body{
    background: #EDEDED url(../images/bg-y.png) repeat-y scroll center top;
    font-size:12px; 
    font-family:'Lucida Grande', 'Lucida Sans Unicode', Tahoma, Arial, san-serif;
    color:#000000;
}
GaVrA
FYI w3schools has nothing to do with w3.org (the W3C)
Felipe Alsacreations
@Felipe Alsacreations well i meant in general, both w3.org and w3schools.com are full of usefull information. :) But i have edited my answer, now i think its ok. ;)
GaVrA
+1 w3schools tricked me into thinking there is an association for years.
Christopher Altman