Hola he agregado un boton mas en mi theme pero lo que no puedo lograr es que el boton como que se active como los otros, el boton se queda como si no lo hubiese hundido, no se si me eplico mejor.
perdon mi boton original es este: lo copio y hago estas modificaciones:
// Show the [home] button.
echo ($current_action=='home' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '"> </td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'home' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '">' , $txt[103] , '</a>
</td>' , $current_action == 'home' ? '<td class="maintab_active_' . $last . '"> </td>' : '';
Moficicacion:
// Show the [portal] button.
echo ($current_action== 'portal' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '"> </td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'portal' ? 'active_back' : 'back' , '">
<a href="http://www.mipagina.com">Portal</a>
</td>' , $current_action == 'portal' ? '<td class="maintab_active_' . $last . '"> </td>' : '';