03-04-2012, 11:45 AM
By MyBBAddict.com
Firstly, you need to download and activate this plugin. Add to ./inc/plugins
Download Avatars in Threadlist
Second, you need to navigate here:
Find
Replace with
Then, finally, add this code to your global.css
You're done!
Firstly, you need to download and activate this plugin. Add to ./inc/plugins
Download Avatars in Threadlist
Second, you need to navigate here:
Code:
ACP > Themes and Templates > Templates > Your Theme Templates > Forum Display Teamples > Forumdisplay_thread
Find
Code:
<div>
<span>{$prefix} {$gotounread}{$thread['threadprefix']}<a href="{$thread['threadlink']}" class="{$inline_edit_class} {$new_class}" id="tid_{$inline_edit_tid}">{$thread['subject']}</a>{$thread['multipage']}</span>
<div class="author smalltext">{$thread['profilelink']}</div>
</div>
Replace with
Code:
<div>
<table><tr><td id="tvatar">{$thread_avatar}</td><td>{$prefix} {$gotounread}{$thread['threadprefix']}<a href="{$thread['threadlink']}" class="{$inline_edit_class} {$new_class}" id="tid_{$inline_edit_tid}">{$thread['subject']}</a>{$thread['multipage']}<br><font color="grey">created by:</font> {$thread['profilelink']}</td></tr></table>
</div>
Then, finally, add this code to your global.css
Code:
#tvatar img {
-moz-border-radius: 4px 4px 4px 4px;
background-color: #FCFCFF;
border: 1px solid #A5CAE4;
max-height: 36px;
max-width: 36px;
padding: 2px;
}
You're done!