Hi there,
I managed to change the look of the logout button by changing the logout.php file (see attachement) to my template standard.
But I can't get it work for the joomlaLogin_vertical.php (don't understand the java logic).
Can you please help?
I want the button in the login module look the same as in the logout.
1422978673_Buttons.zip
Update:
it seems to work with this code:
<div class="control-group" id="form-sclogin-submitcreate">
<button type="submit" name="Submit" class=" <?php if (!$showRegisterLinkInLogin)
{
echo 'button art-button';
} ?>"><?php echo JText::_('MOD_SCLOGIN_LOGIN') ?></button>
<?php if ($showRegisterLinkInLogin) : ?>
<a class="button art-button" href="<?php echo $helper->registerLink; ?>"><?php echo JText::_('MOD_SCLOGIN_REGISTER_FOR_THIS_SITE'); ?></a>
<?php endif; ?>
</div>but I'm note sure if this is a good way t ochange the code....
Any tipps?