Installed +1.
However - the code is actually wrong - if you follow method B the widget looks like this:
Attachment 145970
So in order to get it looking like the demo's in post 1 you need to edit the create template HTML from what was originally posted here:
Code:
<div class="cms_widget">
<div class="block">
<div class="cms_widget_header">
<h3><img title="{vb:raw widget_title}" src="images/cms/widget-donations_colour.png" alt="" /> {vb:raw widget_title}</h3>
</div>
<div class="cms_widget_content" align="center">
{vb:raw static_html}
</div>
</div>
</div>
To read like this version here (add the red element):
Code:
<div class="cms_widget">
<div class="block">
<div class="cms_widget_header">
<h3><img title="{vb:raw widget_title}" src="images/cms/widget-donations_pound_colour.png" alt="" /> {vb:raw widget_title}</h3>
</div>
<div class="cms_widget_content widget_content" align="center">
{vb:raw static_html}
</div>
</div>
</div>
Which will then render the correct ending
Attachment 145971