the php
echo"
<div id='backgroundproduct' style='background-image: url($img)'>
";
the css
#backgroundproduct{
position:fixed;
top:5%;
left:5%;
width:90%;
height:90%;
z-index:12;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-position:top;
}
I'm using a images as a background image, only the lower part of the image is more important than the top.
how can i make the background go up a little ?