With version 1.0.8, I have the SMF forum. I modified the Classic theme to get it to what I want, but I can't add another button. This is what it always ends up looking like:

The further to the left I put the button (like if I put it after search), the more buttons end up on the top where the admin button is.
Here's the code I used for the button:
// Show the [shop] button.
echo ($current_action=='shop' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '"> </td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'shop' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=shop"><img src="http://www.troublebubble.org/public_html/dollcon/Themes/classic/images/english/shop.gif" border=0></a>
</td>' , $current_action == 'shop' ? '<td class="maintab_active_' . $last . '"> </td>' : '';I could probably figure out what I did wrong with linking to the button, but I can't figure out how to put the button in the row with the rest, and stop buttons from going up on top. Does anyone know what I can do to solve this?