This will change the Avatarname Heading into a picture (replace MYPICTURE with the url to the picture).
|
Source code
|
1
2
3
4
|
<script type="text/javascript">
var copiedfrom='www.imvucodes.net';
document.getElementById('avatar_name').innerHTML='<img src="MYPICTURE">';
</script>
|