Centering a bg image?

Super-Supra

(Banned)
4,111
I've been looking most of my morning to find out how to center a bg image, and I haven't been able to find the code, I found one but it didn't work.

Any of you guys have a clue?
 
like this:

Code:
BODY {
    background-image: url('/blah/image.jpg');
    background-position: top center;
    background-attach: fixed;
}

There ya go.
 
Uh, background-attachment, not background-attach. ;) Also, I should note that that particular line of code only works in non-IE browsers (the rest work in IE, of course).
 
Back