
Сообщение от
newart
В статистике, той что внизу, самый полезный пункт идет последним.
При 800х600 его не видно, может быть его переместить на первое или любое другое видимое место?
Увы, это не настраиваемо. Но зато пока искал как настроить, нашёл, что если нажать на "Top 10 Stats" по вывалится дополнительная страница

Сообщение от
newart
"Иконки для сообщения" - имеют неоправданно большое расстояние между друг другом, можно уменьшить?
<td width="12%"> поставить поменьше.
Или даже лучше сделать пустую колонку, что бы в зависимости от разрешения ресайзилась она, а не смайлики.
Порылся и тоже не нашёл
Наверняка кто-то другой всё это сможет сделать, но я выше своей головы прыгнуть не могу.
Добавлено через 11 минут
Нашёл всё-таки два шаблона с требуемым кодом:
"posticons":
Код:
<if condition="$show['posticons']">
<script type="text/javascript">
<!--
function swap_posticon(imgid)
{
var out = fetch_object("display_posticon");
var img = fetch_object(imgid);
if (img)
{
out.src = img.src;
out.alt = img.alt;
}
else
{
out.src = "$vboptions[cleargifurl]";
out.alt = "";
}
}
// -->
</script>
<fieldset class="fieldset" style="margin:10px 0px 0px 0px">
<legend>$vbphrase[post_icons]</legend>
<div style="padding:$stylevar[formspacer]px">
<table cellpadding="0" cellspacing="$stylevar[cellspacing]" border="0" width="95%">
<tr>
<td colspan="15"><div style="margin-bottom:$stylevar[formspacer]px">$vbphrase[may_choose_icon_for_message]:</div></td>
</tr>
<tr>
<td width="12%" nowrap="nowrap"><label for="rb_iconid_0"><input type="radio" name="iconid" value="0" id="rb_iconid_0" tabindex="1" onclick="swap_posticon(null)" $iconchecked />$vbphrase[no_icon] </label></td>
$posticonbits
<if condition="$show['addedspan']"><td colspan="$remainingspan"> </td></if>
</tr>
</table>
</div>
</fieldset>
<else />
<input type="hidden" name="iconid" value="0" />
</if>
и "posticonbit":
Код:
<td><input type="radio" name="iconid" value="$iconid" id="rb_iconid_$iconid" tabindex="1" onclick="swap_posticon('pi_$iconid')" $iconchecked /></td>
<td width="12%"><label for="rb_iconid_$iconid"><img src="$iconpath" alt="$alttext" id="pi_$iconid" onclick="rb_iconid_$iconid.click()" /></label></td>
Где что и как править надо? 12% менял на 5% - визуально ничего не поменялось.