
Originally Posted by
S3R0
This:
Code:
<img src="http://i49.tinypic.com/2l9k1aa.png" border="0"><span style="color: blue; font-weight: bold; text-shadow: 0 0 .7em blue;">
</span></a>
Should be:
Code:
<img src="http://i49.tinypic.com/2l9k1aa.png"><span style="color: blue; font-weight: bold; text-shadow: 0 0 .7em blue;">
</span></img>
Try that.
No.
Code:
<img src="http://i49.tinypic.com/2l9k1aa.png" alt="" height="" width="" /><span style="color: blue; font-weight: bold; text-shadow: 0 0 .7em blue;">
</span>
You always need alt, height, width and src attributes when using image tags.
If that does not work, try adding a container.
Code:
<div><img src="http://i49.tinypic.com/2l9k1aa.png" alt="" height="" width="" /><span style="color: blue; font-weight: bold; text-shadow: 0 0 .7em blue;">
</span></div>
Also, never add in-line styles.