So I'm having some trouble. I know how to actually insert an image into the description, and do overlays, etc. but what I can't figure out how to do is simply have an image placed directly on the profile and then move it around via top/left just like you'd move stats and things around. I've tried using this code but it wont work nor will the image move.
Is there some kind of div I need for it to work? Please help~

You'll need to put the image in a div, either as the div's background, or in its content, in order to move it around the page. You'll apply position properties to the div rather than the image.
You can try this to see if it works:
/This goes in the CSS part, between the style tags/
{position:absolute; top:500px; left:800px; }
/Then this goes in the HTML/

[edit] Please remove all the backslashes D: