Инструкции:
Для клонов стиля prosilver
В теме стиля находим
Код: Выделить всё
.postprofile {
Код: Выделить всё
.postavatars img {
background-color: #EADCFC;
padding: 0px;
margin: 5px 0 1px;
border: 5px solid transparent;
-moz-border-radius: 7px;
-webkit-border-radius: 7px;
-khtml-border-radius: 7px;
border-radius: 7px;
box-shadow: 0 0 10px 0 #4D376B;
-webkit-box-shadow: 0 0 10px 0 #4D376B;
-moz-box-shadow: 0 0 10px 0 #4D376B;
}
в шаблоне viewtopic_body.html, находим
Код: Выделить всё
<td>{postrow.POSTER_AVATAR}</td>
Код: Выделить всё
<td class="postavatars">{postrow.POSTER_AVATAR}</td>
Код: Выделить всё
td.profile {
Код: Выделить всё
.postavatars img {
background-color: #EADCFC;
padding: 0px;
margin: 5px 0 1px;
border: 5px solid transparent;
-moz-border-radius: 7px;
-webkit-border-radius: 7px;
-khtml-border-radius: 7px;
border-radius: 7px;
box-shadow: 0 0 10px 0 #4D376B;
-webkit-box-shadow: 0 0 10px 0 #4D376B;
-moz-box-shadow: 0 0 10px 0 #4D376B;
}
background-color: #EADCFC; - цвет рамки
border: 5px solid transparent; - отступ рамки от аватара
#4D376B - тень рамки, или задний фон рамки (кому как понятнее)
-moz-border-radius: 7px; - закругление уоглков
-webkit-border-radius: 7px; - закругление уоглков
-khtml-border-radius: 7px; - закругление уоглков
border-radius: 7px; - закругление уоглков