В статье используется этот плагин.
1) После установки плагина откройте файл templates/home.tpl
2) Находим
PHP:
{* BEGIN RIGHT COLUMN CONTENT *}
<div style='float: left; width: 200px;'>
и добавляем после
PHP:
{* Leaders Block *}
<div class="header">Лидеры</div>
<div class="portal_content">
{include file='leaders.tpl'}
</div>
<div class="portal_spacer"></div>
3) Я заметил что после этого блоки "слипаются", чтобы это исправить открываем файл templates/styles_leaders.css и стираем все что там есть
4) После удаление добавьте этот код
PHP:
div.leader_container {
width: 168px;
padding: 5px;
overflow: hidden;
border: 1px solid #CCC;
background: #FFF;
height: 50px;
color: #6699CC;
font-weight: bold;
text-decoration: none;
position: relative;
z-index: 1;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
a.leader_link {
float: left;
text-decoration: none;
}
div.leader_container:hover {
background: #FFD700;
color: #FFFFFF;
border: 1px solid #FFFF00;
}
img.leader_photo {
float: left;
margin-right: 10px;
}
span.leader_name {
margin-top: 5px;
float: left;
vertical-align: middle;
}
div.leader_greeting {
width: 158px;
background: #FFFFFF;
border: 1px solid #CCCCCC;
padding: 10px;
margin-bottom: 10px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
По такому принципу можно создать новый блок. В статье описывается добавление блока справа на главной странице, если вы хотите чтобы блок был слева, найдите в файле templates/home.tpl
PHP:
{* BEGIN LEFT COLUMN *}
<div style='float: left; width: 200px;'>
{* SHOW LOGIN FORM IF USER IS NOT LOGGED IN *}
{if !$user->user_exists}
<div class='header'>{lang_print id=659}</div>
<div class='portal_content'>
<form action='login.php' method='post'>
<table cellpadding='0' cellspacing='0' align='center'>
<tr>
<td>
{lang_print id=89}:<br />
<input type='text' class='text' name='email' size='25' maxlength='100' value='{$prev_email}' />
</td>
</tr>
<tr>
<td style='padding-top: 6px;'>
{lang_print id=29}:<br />
<input type='password' class='text' name='password' size='25' maxlength='100' />
</td>
</tr>
{if !empty($setting.setting_login_code)}
<tr>
<td style='padding-top: 6px;'>
<table cellpadding='0' cellspacing='0'>
<tr>
<td><input type='text' name='login_secure' class='text' size='6' maxlength='10' /> </td>
<td>
<table cellpadding='0' cellspacing='0'>
<tr>
<td align='center'>
<img src='./images/secure.php' id='secure_image' border='0' height='20' width='67' class='signup_code' alt='' /><br />
<a href="javascript:void(0);" onClick="$('secure_image').src = './images/secure.php?' + (new Date()).getTime();">{lang_print id=975}</a>
</td>
<td>{capture assign=tip}{lang_print id=691}{/capture}<img src='./images/icons/tip.gif' border='0' class='Tips1' title='{$tip|escape:quotes}' alt='' /></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
{/if}
<tr>
<td style='padding-top: 10px;'>
<input type='submit' class='button' value='{lang_print id=30}' />
<input type='checkbox' class='checkbox' name='persistent' value='1' id='rememberme' />
<label for='rememberme'>{lang_print id=660}</label>
</td>
</tr>
</table>
<noscript><input type='hidden' name='javascript_disabled' value='1' /></noscript>
<input type='hidden' name='task' value='dologin' />
<input type='hidden' name='ip' value='{$ip}' />
</form>
</div>
<div class='portal_spacer'></div>
и добавьте после
PHP:
{* Leaders Block *}
<div class="header">Лидеры</div>
<div class="portal_content">
{include file='leaders.tpl'}
</div>
<div class="portal_spacer"></div>
Автор статьи: MidAgent
От спасибки не откажусь 
---------- Сообщение добавлено в 20:32 ---------- Предыдущее сообщение было в 14:15 ----------
И никаих отзывов