wersja skryptu MyBB: 1.8.4
adres forum: CS-Zielarze.xaa.pl
na czym polega problem (screen, opis, komunikaty, nazwa stylu/theme/szablonu): Witam, mój problem polega na tym że nie potrafię zrobić sidebara po lewej stronie, wszystkie kody których próbowałem użyć stawiały tą tabelkę ciągle na środku...
Proszę o Pomoc
Podaj zawartość szablonu index.
Cytat:<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
<script type="text/javascript">
<!--
lang.no_new_posts = "{$lang->no_new_posts}";
lang.click_mark_read = "{$lang->click_mark_read}";
// -->
</script>
</head>
<body>
{$header}
{$dvz_shoutbox}
{$forums}
{$boardstats}
</tr>
<br class="clear" />
{$footer}
</body>
</html>
dodawałem ten (
https://webboard.pl/thread-60920.html) sidebar ale nic z tego.
Wypadałoby wstawić kod tego sidebara do tego właśnie szablonu, a tu go nie widzę
Dodaj kod sidebara nad
$forums i zawrzyj go w divie z nadanym atrybutem
float: left;
Używałem tego kodu i nic z tego, usunąłem na obecną chwilę ten sidebar bo nie przyjemnie wygląda na forum.
Tutaj index.php z tym kodem
Cytat:<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
<script type="text/javascript">
<!--
lang.no_new_posts = "{$lang->no_new_posts}";
lang.click_mark_read = "{$lang->click_mark_read}";
// -->
</script>
</head>
<body>
{$header}
{$dvz_shoutbox}
<div class="sidebar" style="float: right; width: 19%">
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead">
Zagłosuj na Serwer
</td>
</tr>
<tr>
<td class="trow2">
Opis
</td>
</tr>
</table>
</div>
<div class="forum" style="float: left; width: 80%;">{$forums}</div>
{$boardstats}
</tr>
<br class="clear" />
{$footer}
</body>
</html>
Ciągle jest to samo, wszystko układa się na środku
Nie wstawiaj kodów w zaczniku [quote] tylko [code.] bądź [php]!
Kod:
<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
<script type="text/javascript">
<!--
lang.no_new_posts = "{$lang->no_new_posts}";
lang.click_mark_read = "{$lang->click_mark_read}";
// -->
</script>
</head>
<body>
{$header}
{$dvz_shoutbox}
<div class="forum" style="float: right; width: 80%;">{$forums}</div>
<div class="sidebar" style="float: left; width: 19%">
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead">
Zagłosuj na Serwer
</td>
</tr>
<tr>
<td class="trow2">
Opis
</td>
</tr>
</table>
</div>
{$boardstats}
</tr>
<br class="clear" />
{$footer}
</body>
</html>
Wszystko ok, dzięki za pomoc