image gets shifted right in css code example
Example 1: jquery get mouse page left and top
$("#something").click(function(e){
var parentOffset = $(this).parent().offset();
//or $(this).offset(); if you really just want the current element's offset
var relX = e.pageX - parentOffset.left;
var relY = e.pageY - parentOffset.top;
});
/-FOLLOW ME ON INSTA-/
@hardcode_studios
Example 2: how to push text to the right css
padding-left: 3px;