Yes, we've detected this problem in last time - we'll update Quay in near future. Now you can update both_columns.php skeleton file to:
- Code: Select all
<?php
/**
*
* @version 1.0.0
* @package GKTemplate
* @copyright Copyright (C) GavickPro. All rights reserved.
* @license Proprietary - GavickPro eClub members only
*
* ************************
*
* Skeleton - both columns
*
*/
// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );
?>
<?php if(
$this->modules('top_up or user1 or user2 or user3 or user4 or user5 or user6 or top_down') ||
$this->modules('inset_left or inset_right or adv1 or adv2 or adv3 or adv4 or adv5 or adv6') ||
$this->checkMainbody() ||
$this->checkComponent() ||
$this->modules('bottom_up or user7 or user8 or user9 or user10 or user11 or user12 or bottom_down') ||
$this->modules('left_top or left_one or left_two or left_bottom') ||
$this->modules('right_top or right_one or right_two or right_bottom')
) : ?>
<div id="gk_mainbody" class="both_columns">
<jdoc:include type="message" />
<div id="gk_mainbody_wrap">
<div id="gk_mainbody_wrap2" class="clearfix<?php echo ($this->equalColumns["gk_mainbody"]) ? ' equal_col' : ''; ?>">
<?php $this->loadBlock("gk_left"); ?>
<?php $this->loadBlock("gk_content"); ?>
<?php $this->loadBlock("gk_right"); ?>
</div>
</div>
</div>
<?php endif; ?>
and in layout.css file you should change styles for both columns layout to:
- Code: Select all
/* both */
.both_columns div#gk_left{
float:left;
}
.both_columns div#gk_right{
float:left;
}
.both_columns div#gk_content{
float:left;
}