Hàng xịn nhá mọi người
Đề mâu: [You must be registered and logged in to see this link.]
Avatar người gửi cuối hiện ở Index_box.
By: giObanii - avac (phpbb2)
Convert: miamor (Invision)
Tạo một file js:
Title*: Avatar in index
Placement: In the homepage
Đề mâu: [You must be registered and logged in to see this link.]
Avatar người gửi cuối hiện ở Index_box.
By: giObanii - avac (phpbb2)
Convert: miamor (Invision)
Tạo một file js:
Title*: Avatar in index
Placement: In the homepage
- Code:
// Avatar in index by giObanii (phpbb2)
// Convert by miamor (Invision)
// Do not delete those lines, please.
$(document).on('ready', function() {
$('.ipbtable.index-box tr .row1').prepend('<div class="avatar-index"><div>');
$('.ipbtable.index-box tr .row1 .avatar-index').each(function () {
var profileUser = $(this).parent().children('span').children('strong').children('a').attr('href');
$(this).html('<a href="' + profileUser + '" class="avatar-index-enlace"><img src="http://cdn1.iconfinder.com/data/icons/basicset/user_64.png" alt="No Avatar" /></a>');
$(this).children('a').load(profileUser + ' .box-content.profile.center:eq(0) img:eq(0)');
});
});
- Code:
.avatar-index { float: left; }
.avatar-index img { width: 40px; height: 40px; padding: 1px; border: 1px solid #DDD; margin: 0 5px; }
No Comment.