# androidwap (16.01.2016 / 15:22)в style.css
как зделать чтоб аватары были вкругу типа как тут http://wapsoccer.ru/str/online.php
.radius {
display: block;
margin: -3px;
height: 32px;
width: 32px;
background-color: #F1F1F1;
overflow: hidden;
border: 2px solid #FFF;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 2px 5px rgba(0,0,0,0.2);
float: left;
border-radius: 450px;
-moz-border-radius: 450px;
-webkit-border-radius: 450px;
}в func.php в show_user
if ($set_user['avatar']) {
$out .= '<table cellpadding="0" cellspacing="0"><tr><td>';
if (file_exists(('../files/avatar/' . $user['id'] . '.png')))
$out .= ' <div class="radius"><img src="../files/avatar/' . $user['id'] . '.png" width="32" height="32" alt="' . $user['name'] . '" /></div> ';
else
$out .= '<div class="radius"><img src="../images/empty.png" width="32" height="32" alt="' . $user['name'] . '" /></div> ';
$out .= '</td><td>';
}