07-21-2009, 01:32 PM
|
#4 (permalink)
|
|
The Addict
Join Date: Aug 2008
Posts: 336
Thanks: 8
|
have you try using 2 keywords:
Code:
background-position:top center;
If that doesn't work, it's because the center keyword doesn't work right in most browsers (that's my personal experience). I always use the percentages:
Code:
/* y x */
background-position:0 50%;
you just need to calibrate the 50% percentage so it can be in the center
|
|
|
|