I am also having some trouble adding navigation tabs to this theme.
I have installed two mods for my 1.1.11 forum... SimplePortal and SMF-Arcade. I need to add a "FORUM" and "ARCADE" link.
I've edited the following two files to include...
/themes/clearmind/index.template.php
Line 521: // Show the [forum] button.
Line 522: echo ($current_action=='forum' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '"> </td>' : '' , '
Line 523: <td valign="top" class="maintab_' , $current_action == 'forum' ? 'active_back' : 'back' , '">
Line 524: <a href="', $scripturl, '">' , $txt['forum'] , '</a>
Line 525: </td>' , $current_action == 'forum' ? '<td class="maintab_active_' . $last . '"> </td>' : '';
Line 526:
Line 527: // Show the [arcade] button.
Line 528: echo ($current_action=='arcade' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '"> </td>' : '' , '
Line 529: <td valign="top" class="maintab_' , $current_action == 'arcade' ? 'active_back' : 'back' , '">
Line 530: <a href="', $scripturl, '">' , $txt['arcade'] , '</a>
Line 531: </td>' , $current_action == 'arcade' ? '<td class="maintab_active_' . $last . '"> </td>' : '';
/themes/default/languages/index.english.php
Line82: $txt['forum'] = 'Forum';
Line83: $txt['arcade'] = 'Arcade';
The tabs appear just as I would expect. If I manually type ?action=forum or ?action=arcade the pages load just fine and the navigation receives the correct highlighting to show current page status. However, the ?action=page_name parameters are not added to the url. Clicking either of those buttons just goes to /index.php with no ?action=page_name added.
Also... of all the theme's I've tried out, this is by far my favorite. Kudos to you on a great looking theme.