Adrian,
kumpel mi pomógł. Zrobił i jest ok. No chyba, że zrobił coś niebezpiecznego, to byłbym wdzięczny za info.
Dokonał jednej zmiany w pliku template.index.php mojego stylu. Zrobił tak:
if($_SERVER['PHP_SELF'] != '/index.php') { echo ' <div class="navigate_section"> <ul>'; // Each tree item has a URL and name. Some may have extra_before and extra_after. foreach ($context['linktree'] as $link_num => $tree) { echo ' <li', ($link_num == count($context['linktree']) - 1) ? ' class="last"' : '', '>'; // Show something before the link? if (isset($tree['extra_before'])) echo $tree['extra_before']; // Show the link, including a URL if it should have one. echo $settings['linktree_link'] && isset($tree['url']) ? ' <a href="' . $tree['url'] . '"><span>' . $tree['name'] . '</span></a>' : '<span>' . $tree['name'] . '</span>'; // Show something after the link...? if (isset($tree['extra_after'])) echo $tree['extra_after']; // Don't show a separator for the last one. if ($link_num != count($context['linktree']) - 1) echo ' »'; echo ' </li>'; } echo ' </ul> <>'; $shown_linktree = true; } else { echo '<div style="height: 32px;"><>'; }