Hey there,

this time I just want to let you know how to add website thumbshots from Thumbshots.com to your pligg template.

Go to Thumbshots.com, register for a free account, grab the "Integration Code"

Code:
<img src="http://open.thumbshots.org/image.aspx?url=[LINK]" border="1" />
and paste it e.g. right after

Code:
<div id="storycontent">
in your link_summary.tpl file.

In my case (Arthemia template) I have added the following line to link_summary.tpl file:

Code:
<img class="thumbshot" src="http://open.thumbshots.org/image.aspx?url={$url_short}" border="0" width="126" height="96" alt="Thumbshot" />
{$url_short} is the URL to the website.

I have added the class thumbshot because I have the following in my arthemia.css file:

Code:
#front-list img.thumbshot {
margin-top:4px;
float:right;
width:132px;
height:102px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
-moz-box-shadow: 0 0 4px #444;
-webkit-box-shadow: 0 0 4px #444;
box-shadow: 0 0 4px #444;
}
Watch the result at vote.w3cvalidco.de - vote for articles related to webdesign

Enjoy