wersja skryptu MyBB:1.6.12
adres forum:dspcraft.cba.pl
na czym polega problem (screen, opis, komunikaty):
Witam. Jak zmienić miejsce w portalu Ostatnie wątki na prawą stronę, oraz jak dodać kod HTML na prawą stronę portalu? Proszę o odpowiedź.
Pokaż swój szablon portal.
ACP → Style i szablony → Szablony → Twój szablon → Portal → portal
(09.02.2014, 11:02)Snake_ napisał(a): [ -> ]Pokaż swój szablon portal.
ACP → Style i szablony → Szablony → Twój szablon → Portal → portal
Nie rozumiem, mam napisać jaki mam styl?
Nie, pokaż kod szablonu, który masz w
ACP → Style i szablony → Szablony → [NAZWA] szablony → Portal → portal
Kod:
<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
</head>
<body>
{$header}
<table width="100%" cellspacing="0" cellpadding="{$theme['tablespace']}" border="0" align="center">
<tr><td valign="top" width="200">
{$welcome}
{$pms}
{$search}
{$stats}
{$whosonline}
{$latestthreads}
</td>
<td> </td>
<td valign="top">
{$announcements}
</td>
</tr>
</table>
{$footer}
</body>
</html>
Takie kody dajemy w [ code] lub [ php]...
Spróbuj tak:
Kod PHP:
<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
</head>
<body>
{$header}
<table width="100%" cellspacing="0" cellpadding="{$theme['tablespace']}" border="0" align="center">
<tr>
<td valign="top">
{$announcements}
</td>
<td> </td>
<td valign="top" width="200">
{$welcome}
{$pms}
{$search}
{$stats}
{$whosonline}
{$latestthreads}
</td>
</tr>
</table>
{$footer}
</body>
</html>
Ale wtedy wszystko idzie na prawą stronę a chce żeby tylko:
Szukaj na forum
Statystyki
Ostatnie wątki
Pllus kody html, żebym mógł wstawić status serwerów.
Kod PHP:
<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
</head>
<body>
{$header}
<table width="100%" cellspacing="0" cellpadding="{$theme['tablespace']}" border="0" align="center">
<tr>
<td valign="top" width="200">
{$welcome}
{$pms}
{$whosonline}
</td>
<td> </td>
<td valign="top">
{$announcements}
</td>
<td> </td>
<td valign="top" width="200">
{$search}
{$stats}
{$latestthreads}
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead"><strong>Status serwera</strong></td>
</tr>
<tr>
<td class="trow1">
twój status serwrta
</td>
</tr>
</table>
</td>
</tr>
</table>
{$footer}
</body>
</html>