Hello in the top right of the template it has "My Cart , Register , and Login, div id is #gkTopLinks
How do i go about adding additional links / text to this row
Kindest Regards
<?php if($this->API->modules('login + cart + lang') || ($this->API->get('register_link', 1) && $userID == 0)) : ?>
<div id="gkTopLinks">
<?php if($this->API->modules('lang')) : ?>
<jdoc:include type="modules" name="lang" style="<?php echo $this->module_styles['lang']; ?>" />
<?php endif; ?>
<?php if($this->API->modules('cart')) : ?>
<a href="index.php?option=com_virtuemart&view=cart" id="btnCart" data-url="index.php?lang=<?php echo $lang; ?>&tmpl=cart"><?php echo JText::_('TPL_GK_LANG_MY_CART'); ?><span><?php echo JText::_('TPL_GK_LANG_MY_CART_LOADING'); ?></span></a>
<?php endif; ?>
<?php if($this->API->get('register_link', 1) && $userID == 0) : ?>
<a href="<?php echo $this->API->URLbase(); ?>index.php?option=com_users&view=registration" id="btnRegister"><?php echo JText::_('TPL_GK_LANG_REGISTER'); ?></a>
<?php endif; ?>
<?php if($this->API->modules('login')) : ?>
<a href="<?php echo $this->API->URLbase(); ?>index.php?option=com_users&view=login" id="btnLogin"><?php echo $btn_login_text; ?></a>
<?php endif; ?>
</div>
<?php endif; ?>