Move Breadcrumb

Premium sports magazine Joomla template with clean, easy to customize and unique design.
GK User
Mon Apr 30, 2012 10:19 pm
How can I move the breadcrumb position above the mainbody_top?
User avatar
Fresh Boarder

GK User
Mon Apr 30, 2012 10:51 pm
Hi

Open this file:
../gk_league_news/layouts/blocks/main.php

find this code:

Code: Select all
<?php if($this->API->modules('mainbody_top')) : ?>
            <section id="gkMainbodyTop">
               <jdoc:include type="modules" name="mainbody_top" style="<?php echo $this->module_styles['mainbody_top']; ?>" />
            </section>
            <?php endif; ?>   
            
            <?php if($this->API->modules('breadcrumb') || $this->parent->getToolsOverride()) : ?>
            <section id="gkBreadcrumb">
               <?php if($this->API->modules('breadcrumb')) : ?>
               <jdoc:include type="modules" name="breadcrumb" style="<?php echo $this->module_styles['breadcrumb']; ?>" />
               <?php endif; ?>
               
               <?php if($this->parent->getToolsOverride()) : ?>
                  <?php $this->loadBlock('tools/tools'); ?>
               <?php endif; ?>
            </section>
            <?php endif; ?>


replace with

Code: Select all
<?php if($this->API->modules('breadcrumb') || $this->parent->getToolsOverride()) : ?>
            <section id="gkBreadcrumb">
               <?php if($this->API->modules('breadcrumb')) : ?>
               <jdoc:include type="modules" name="breadcrumb" style="<?php echo $this->module_styles['breadcrumb']; ?>" />
               <?php endif; ?>
               
               <?php if($this->parent->getToolsOverride()) : ?>
                  <?php $this->loadBlock('tools/tools'); ?>
               <?php endif; ?>
            </section>
            <?php endif; ?>
            
            <?php if($this->API->modules('mainbody_top')) : ?>
            <section id="gkMainbodyTop">
               <jdoc:include type="modules" name="mainbody_top" style="<?php echo $this->module_styles['mainbody_top']; ?>" />
            </section>
            <?php endif; ?>   


Notice! Be careful with future updates on this template.

Cheers ;)
User avatar
Platinum Boarder

GK User
Mon Apr 30, 2012 11:10 pm
Thanks that helped!
User avatar
Fresh Boarder


cron