Check the code that you entered into that widget – it’s missing a closing quotation mark in it’s attribute. Pay more attention to the code that you entered.
Currently you have this:
<div style="text-align: center;">
<a href="http://smoker2vaper.com/guest-bloggers-comp/>
<img src="http://img59.imageshack.us/img59/1835/aprilcomp.png" alt="Win a Vision Spinner and Charger. Simply post a guest blog post. Click for details.">
</a>
</div>
<center><a href="http://smoker2vaper.com/guest-bloggers-comp/"><img src="http://img59.imageshack.us/img59/1835/aprilcomp.png" alt="some_text"> </center>
It should be like this:
<div style="text-align: center;">
<a href="http://smoker2vaper.com/guest-bloggers-comp/">
<img src="http://img59.imageshack.us/img59/1835/aprilcomp.png" alt="Win a Vision Spinner and Charger. Simply post a guest blog post. Click for details.">
</a>
</div>