
Gantry is a powerful framework, or set of building blocks for which to build simple or complex websites. Find out more...
This section covers moving a widget position within your Gantry enabled template.
Check out this quick screencast on Widget Positions to get an overview of how this feature works within Joomla and the Gantry Framework.
Determine which widget position you want to move and where it needs to go within the index.php file of the template.
Copy the Gantry widget position block of code you wish to move. It should look similar to this:
<?php /** Begin Top **/ if ($gantry->countModules('top')) : ?>
<div id="rt-top" <?php echo $gantry->displayClassesByTag('rt-top'); ?>>
<div class="rt-container">
<?php echo $gantry->displayModules('top','standard','standard'); ?>
<div class="clear"></div>
</div>
</div>
<?php /** End Top **/ endif; ?>
Move to the desired area and paste the copied block of code into the new location.