Magazine Blog & Magazine Template

Support help forum dedicated to free and commerical templates for Joomla 3 and 2.5 version.
GK User
Tue Apr 23, 2013 11:02 pm
exchange position of modules within the enclosures.

logo for registration

thank you
User avatar
Fresh Boarder

GK User
Tue Apr 23, 2013 11:17 pm
Hi, this can be done, but note that probably you'll lost logo in mobile view.
Your question type is customization, not standard support, so I can give you only few tips.

(1) Edit this file: gk_magazine\layouts\default.php
(2) Find this part
Code: Select all
   <section id="gkPageTop">
       <div class="gkPage">                       
          <?php $this->layout->loadBlock('logo'); ?>
         
          <?php if($this->API->modules('bannertop')) : ?>
          <div id="gkBannerTop">
             <jdoc:include type="modules" name="bannertop" style="<?php echo $this->module_styles['bannertop']; ?>" />
          </div>
          <?php endif; ?>
         
          <?php if(($this->API->get('reg_link') == '1' && $userID == 0) || $this->API->modules('login')) : ?>
          <div id="gkUserArea">
             <?php if($this->API->modules('login')) : ?>
             <a href="<?php echo $this->API->get('login_url', 'index.php?option=com_users&view=login'); ?>" id="gkLogin"><?php echo ($userID == 0) ? JText::_('TPL_GK_LANG_LOGIN') : JText::_('TPL_GK_LANG_LOGOUT'); ?></a>
             <?php endif; ?>
             
             <?php if($this->API->get('reg_link') == '1' && $userID == 0) : ?>
             <a href="<?php echo $this->API->get('reg_url', '#'); ?>" id="gkRegister"><?php echo JText::_('TPL_GK_LANG_REGISTER'); ?></a>
             <?php endif; ?>
          </div>
          <?php endif; ?>
       </div>
    </section>


and change position of logo code <-with-> "UserArea", then play with css. Of course you can insert standard <img> with scr to your logo url instead of module logo position.
User avatar
Platinum Boarder


cron