Looking for help customizing the background position in a PSD image to adjust the slope at the top, right-left side, and bottom. Here is my PSD: https://i.stack.imgur.com/Jr4h7.png
Below is some of my CSS code:
html{
background:#aea99f;
}
body{
background-image: url("http://i.imgur.com/H3fh4Ht.png");
background-repeat: repeat;
background-position: 48% 20%;
margin: 0 auto;
width: 94%;
}
Any suggestions on how to achieve the desired customization?
Here is a JS example for reference: http://jsfiddle.net/zmkkdj46/
Thank you!