VoViK, ебт.. зайди на их оф..сайт ии прочитай faqДобавлено (21.06.2010, 19:45)
---------------------------------------------
===================================
Вопрос: Как сделать форум на всю ширину?
===================================
Ответ:
Открыть index.php
Найти:
Code
$tpl->load_template('main.tpl');
Заменить на:
Code
if ($do=="forum")
$tpl->load_template('forum.tpl');
else
$tpl->load_template('main.tpl');
Создать в папке шаблона файл forum.tpl, в нем прописать
Code
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
</head>
<body>
{AJAX}
<div style="margin:5px">
{info}{content}
</div>
</body>
</html>