Posted August 9th 2013, 4:54 pm
PHPbb3 ---> Java script---->In the homepage
CSS
please update the code for phpbb3.
- Code:
$(document).ready(function () {
$('.topiclist.forums .lastpost').each(function(e) {
var l = this.getElementsByTagName('strong')[0].firstChild.href;
$(this).prepend('<span class="lp_avatar" id="lp_avatar'+e+'"></span>');
$('#lp_avatar'+e).load(l+' #profile-advanced-right img:eq(0)');
});
});
CSS
- Code:
.lp_avatar {
padding: 2px;
margin: 0 5px;
border: 1px solid #105289;
float: left;
}
.lp_avatar img {
height: 40px;
width: 40px;
}
please update the code for phpbb3.