css for placing image on different location code example
Example 1: move css background image
background-image: url('w3css.gif');
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
Example 2: how to change image position in css
.image{
position: absolute;
right:300px;
}