Add image to any div

Add image to any div Image
The small thumbnail of me to the left is being loaded dynamically with JQuery.



Paste this code into the header area or any page and adjust the image src to your image location. Also adjust the css to your needs to postion image and give it custom styling. you'll have to look at the source code of your shop with somthing like Firebug for Firefox to figure out the name of the div id you want to use. For this example I used scs_subheader_wrapper.
<style>.custom-image{margin-left:200px;}</style><script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script><script>$(document).ready(function(){ $("#scs_subheader_wrapper").append('<img src="http://mydomain.com/images/thumbnail.jpg" class="custom-image"/>'); }); </script>