Hey there, thanks all you guys for your hard work!
I am customizing auto responders for one form, I have used a div tag to set my email content inside a rounded box with background. Now I am struggling to add an image on top of this box to make it look as if it was half outside the box (not inside the margin), but I just can't get it.
Would you help please?
I have been getting familiar little by little to coding terms, etc. So please just don't make it hard for me to understand your coding language :)
This is what I have built upon W3schools.com, which I thought would look the same on the emails, but no luck:
<html><div style="width:600px; height:auto; border:none; -moz-box-shadow: 5px 5px 5px #ccc; -webkit-box-shadow: 5px 5px 5px #ccc; box-shadow: 5px 5px 5px #ccc; -webkit-border-radius: 30px; -moz-border-radius: 30px; border-radius: 30px; padding: 40px 100px 10px 40px; background:#99CCCC
; position: relative; top: 10; left: 10;" >
<img src="http://www.adondeiremos.com.mx/kleverest/wp-content/uploads/Thanks.png" style="position: absolute; top: -15px; left: 580px;"/>
<body>
"Some content"
</body></div>
</html>
Thanks!