Background url alignment

please advise how i get the down arrow background in the main content area of this site to be about 5px in from the left and 5px up from the bottom of that area.

the current CSS is:

#main {background: url(/wordpress/wp-content/uploads/site-elements/storage-pricing.jpg) left bottom 10no-repeat #FFF;}

Hi,

You can’t actually place it 5px up from the bottom (unless you use css3) but you could place it at 98% from the top for a similar effect.


#main {background: url(/wordpress/wp-content/uploads/site-elements/storage-pricing.jpg) [B]5px 98%[/B] no-repeat #FFF; padding-top:15px;}

5px from the left is no problem though as shown also above.

good idea. thank you.