tags:

views:

19

answers:

2
A: 

Where you have:

background-position: 3% 45%;

Try using px values instead of percentages. So change the 3% and 45% to the offset of the image you want, something like 3px 45px.

You could also replace 3% and 45% with 'top left' to fix the position to the top left..

betamax
Thanks for the answer
Rifki
A: 

Well Isnt that typical. Done a bit more searching and found the answer, so thought I would answer my own question.

I mixed position percentages and pixels as follows: background-position: 3% 9px;

Rifki