И у Вас ошибка:Благодарю!
вместо <a href="/profile/<?php echo $profile['id']; ?>
нужно <a href="/users/<?php echo $profile['id']; ?>
И у Вас ошибка:Благодарю!
Приветствую!
Уважаемое сообщество, помогите с этим моментом по изменению аватарки при наведении на нее.
Что то я совсем не понял как правильно сделать и у меня ничего не получается…
/*при на ведении на аватар смена фото*/ .thumbs { width: 100%; max-width: 450px; /* опционально */ margin: 10px; opacity: .99; overflow: hidden; position: relative; border-radius: 3px; cursor: pointer; } .thumbs:before { content: ''; background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.7) 100%); background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%); width: 100%; height: 50%; opacity: 0; position: absolute; top: 100%; left: 0; z-index: 2; -webkit-transition-property: top, opacity; transition-property: top, opacity; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; } .thumbs img { display: block; width: 100%; /* ширина картинки */ height: auto; /* высота картинки */ backface-visibility: hidden; -webkit-backface-visibility: hidden; } .thumbs .caption { width: 100%; padding-bottom: 20px; color: #fff; position: absolute; bottom: 0; left: 0; z-index: 3; text-align: center; } .thumbs .caption span { display: block; opacity: 0; position: relative; top: 100px; -webkit-transition-property: top, opacity; transition-property: top, opacity; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -webkit-transition-delay: 0s; transition-delay: 0s; } .thumbs .caption .title { line-height: 1; font-weight: normal; font-size: 18px; } .thumbs .caption .info { line-height: 1.2; margin-top: 5px; font-size: 12px; } .thumbs:focus:before, .thumbs:focus span, .thumbs:hover:before, .thumbs:hover span { opacity: 1; } .thumbs:focus:before, .thumbs:hover:before { top: 50%; } .thumbs:focus span, .thumbs:hover span { top: 0; } .thumbs:focus .title, .thumbs:hover .title { -webkit-transition-delay: 0.15s; transition-delay: 0.15s; } .thumbs:focus .info, .thumbs:hover .info { -webkit-transition-delay: 0.25s; transition-delay: 0.25s; }
<div class="thumbs"> <div class="usr_avatar"> <img alt="{$usr.nickname|escape:'html'}" class="usr_img" src="{$usr.avatar}" /> </div> {if $myprofile || $is_admin} <div class="caption"> <span class="title"><a class="avatar"style="color: #fff !important;" href="/users/{$usr.id}/avatar.html" title="{$LANG.SET_AVATAR}">{$LANG.SET_AVATAR}</a></span> </div> {/if} </div>