Thanks!
Open up forumhome_lastpostby template.
Find
Code:
<vb:if condition="$show['lastpostinfo']">
(it's the first line)
After, put this:
Code:
<div class="lastguy">
<a href="{vb:link thread, {vb:raw threadinfo}, {vb:raw pageinfo_lastpost}}#post{vb:raw lastpostinfo.lastpostid}"><div class="with-bg-size">
<div class="with-bg-size" style="background-image: url('{vb:raw vboptions.bburl}/image.php?{vb:raw session.sessionurl}u={vb:raw lastpostinfo.lastposterid}&type=thumb&quality=100');" alt="Avatar"></div></div></a>
In additional.css, put this anywhere:
Code:
.lastguy {
padding-top: 6px;
}
.with-bg-size
{
background-image: url('images/noav.png');
width: 50px;
height: 50px;
background-position: center;
-moz-border-radius: 4px;
border-radius: 4px;
/* Make the background image cover the area of the <div>, and clip the excess */
background-size: cover;
float:left;margin-right:10px;
}
You will need to modify images/noav.png to an image on your server.
Let me know if this works out!