Admin
[Skin] Loveteen (Phpbb2)
on 17/10/2012Admin
Demo:
Chưa đăng nhập:
Đã đăng nhập:
Thông tin Skin
© 2012 Vbb 3.8.X by Love Teen.Vn
Fm Phpbb2 - Rip by cubimtq
Pass: cubimtq
code avatar index cho skin love teen
js
- Code:
// Avatar in index by giObanii phpbb2
$(document).on('ready', function() {
$('.tborder tr td.alt1 .post_in').prepend('<div class="avatar-index"><div>');
$('.tborder tr td.alt1 .post_in .avatar-index').each(function () {
var profileUser = $(this).parent().children('span').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 + ' .forumline .row1.gensmall[align="center"]:eq(0) img:eq(0)');
});
});
css
- Code:
/* Avatar in index by giObanii phpbb3 và phpbb2 */
.avatar-index { float: left; }
.avatar-index img { width: 40px; height: 40px; padding: 1px; border: 1px solid #DDD; margin: 0 5px; }