Help Centering Background

Status
Not open for further replies.

Flash

Active Member
1,463
2008
191
0
Alright so I created a new bg for warez predator but it's not centered. What do I need to add to the code to center it?

Site: http://warezpredator.com

Here is the code:

body {
background-image: url('images/misc/bgpred.png');background-repeat: repeat-x; background-attachment: fixed; background-color: #000000; }

This is what I changed it to:

body {
background: url('images/misc/bgpred.png') no-repeat top center #000000;
background-attachment: no-repeat top center #000000; }

Still didn't work, I'm a bit confused, any help would be great.
 
6 comments
Here you go:

body
{
background-image: url('http://warezpredator.com/images/misc/bgpred.png');
background-repeat: repeat-x;
background-position:center;
background-attachment: fixed; background-color: #000000; }

Enjoy. (;
 
Status
Not open for further replies.
Back
Top