Re-locating the logo to the top of Menu

GK User
Mon May 07, 2012 4:44 am
Hello,

How do I re-position the logo to the top of the main menu?
User avatar
Platinum Boarder

GK User
Mon May 07, 2012 11:15 am
Hi

I remind you that this is considerate customization, so you must be careful with future updates.

Please go to template parameters and enable override.css file.

Them open the following file from the template directory:
../layouts/default.php

remove this line
Code: Select all
<?php $this->loadBlock('logo'); ?>


and replace this lines
Code: Select all
<?php if(GK_REGISTER) : ?>
                <a href="<?php echo $this->URLbase(); ?>index.php?option=com_users&amp;view=registration" id="btnRegister"><?php echo JText::_('TPL_GK_LANG_REGISTER'); ?></a>
                <?php endif; ?>
             </div>
             <?php endif; ?>
          </div>


with this ones:

Code: Select all
<?php if(GK_REGISTER) : ?>
                <a href="<?php echo $this->URLbase(); ?>index.php?option=com_users&amp;view=registration" id="btnRegister"><?php echo JText::_('TPL_GK_LANG_REGISTER'); ?></a>
                <?php endif; ?>
             </div>
             <?php endif; ?>
            <?php $this->loadBlock('logo'); ?>
          </div>


Them add this lines on ../css/override.css file:

Code: Select all
h1#gkLogo {margin: 0 auto!important; float: none!important}


Cheers
User avatar
Platinum Boarder

GK User
Mon May 07, 2012 2:21 pm
:D Thank you, it worked. You foks are awesome.




Seichinha wrote:Hi

I remind you that this is considerate customization, so you must be careful with future updates.

Please go to template parameters and enable override.css file.

Them open the following file from the template directory:
../layouts/default.php

remove this line
Code: Select all
<?php $this->loadBlock('logo'); ?>


and replace this lines
Code: Select all
<?php if(GK_REGISTER) : ?>
                <a href="<?php echo $this->URLbase(); ?>index.php?option=com_users&amp;view=registration" id="btnRegister"><?php echo JText::_('TPL_GK_LANG_REGISTER'); ?></a>
                <?php endif; ?>
             </div>
             <?php endif; ?>
          </div>


with this ones:

Code: Select all
<?php if(GK_REGISTER) : ?>
                <a href="<?php echo $this->URLbase(); ?>index.php?option=com_users&amp;view=registration" id="btnRegister"><?php echo JText::_('TPL_GK_LANG_REGISTER'); ?></a>
                <?php endif; ?>
             </div>
             <?php endif; ?>
            <?php $this->loadBlock('logo'); ?>
          </div>


Them add this lines on ../css/override.css file:

Code: Select all
h1#gkLogo {margin: 0 auto!important; float: none!important}


Cheers
User avatar
Platinum Boarder

GK User
Sat May 12, 2012 10:42 pm
not work for me

Look.
User avatar
Fresh Boarder

GK User
Sat May 12, 2012 10:46 pm
Hey Friend,

You want to follow the instructions to a tee(very carefully) to get it to work...... :D


rcflash wrote:not work for me

Look.
User avatar
Platinum Boarder


cron