First topic message reminder :

Code tested on: PunBB
Checked by: Name of checker (Members: Leave empty)
Extra infos:
Codes last updated on 10th March 2014 by Niko
[/list]
Avatar in last posts on the home page
Description
Add a little avatar in the home page of the last member that has posted in each forum
Demo

Code
You have to reply to this topic to see the code (avoid Flood)
General Informations
Code creator: www.forumotion.comCode tested on: PunBB
Checked by: Name of checker (Members: Leave empty)
Extra infos:
- PunBB: Go to Administration Panel > Display > Pictures and colors > Colors > CSS stylesheet and paste:
- Code:
.mini_ava{
float:left;
}
.mini_ava img{
width:40px;
height:40px;
margin: 0 5px;
}
- PhpBB2: same place (code:
- Code:
/* Avatar in index by mastersly phpbb2*/
.avatar-index { float: left; }
.avatar-index img { width: 40px; height: 40px; padding: 1px; border: 1px solid #DDD; margin: 0 5px; }

[/list]