how to make div class stay in place code example
Example 1: how to change image position in css
.image{
position: absolute;
right:300px;
}
Example 2: how fixed image at top
.cust_sticky { /* div */
position: fixed;
}
Example 3: adjusting y pos of element in css
top: 150px;