[SOLVED] gkbottom wrap??

GK User
Wed Jan 04, 2012 11:49 am
hey, is there anyway i can get rid of gkbottom wrap section of the template?
User avatar
Senior Boarder

GK User
Wed Jan 04, 2012 12:17 pm
Hi,

Try this:

- Open file: \templates\gk_finance_business\layouts\default.php

- Find this code to remove:
Code: Select all
<div id="gkBottomWrap">
              <div id="gkMiddleBar">
                 <?php if($this->getParam('socialIcons', 1)) : ?>
            <div id="gkSocialIcons">
                <?php if($this->getParam('socialIcons3', 1)) : ?>   
            <a href="<?php echo $this->getParam('socialIcons3url', '', true); ?>" id="gkIconsFacebook" target="_blank"><?php echo $this->getParam('socialIcons3text', ''); ?></a>
            <?php endif; ?>
            <?php if($this->getParam('socialIcons2', 1)) : ?>   
            <a href="<?php echo $this->getParam('socialIcons2url', '', true); ?>" id="gkIconsVimeo" target="_blank"><?php echo $this->getParam('socialIcons2text', ''); ?></a>
            <?php endif; ?>
                <?php if($this->getParam('socialIcons1', 1)) : ?>   
            <a href="<?php echo $this->getParam('socialIcons1url', '', true); ?>" id="gkIconsTwitter" target="_blank"><?php echo $this->getParam('socialIcons1text', ''); ?></a>
            <?php endif; ?>
         </div>
         <?php endif; ?>
               <?php if( $this->modules('search') ): ?>
                <div id="gkSearch">
                  <jdoc:include type="modules" name="search" style="<?php echo $this->module_styles['search']; ?>" />
              </div>
            <?php endif; ?>
        </div>   
       <?php $this->loadBlock('bottom'); ?>
        </div>
User avatar
Platinum Boarder

GK User
Wed Jan 04, 2012 1:52 pm
that worked thx :)
User avatar
Senior Boarder

GK User
Thu Jan 05, 2012 1:29 pm
Marking as solved.

See you around...
User avatar
Platinum Boarder

GK User
Tue Jan 24, 2012 8:22 pm
sorry about revisiting a solved topic but my client wants the the footer menu and the copyright to show up but doing this modification in the default.php file those two features dont show up.

on my own i included this code from the original php file;

Code: Select all
<div id="gkWrap3">
        <?php $this->loadBlock('bottom'); ?>
        </div>
        <div id="gkFooterWrap">   
       <?php $this->loadBlock('footer'); ?>
        </div>
    </div>


but it doesnt control the width.

how can i do that?

heres the site http://www.coresoftware.es/

thx for the help
User avatar
Senior Boarder

GK User
Fri Jan 27, 2012 7:12 am
Just put the removed code back to the file \templates\gk_finance_business\layouts\default.php which I have suggested you earlier.
User avatar
Platinum Boarder

GK User
Fri Jan 27, 2012 11:06 am
my client doesnt want the black bar on the bottom of the page just the footer menu and copyright stuff.

when i put all the code back the black bar comes back and we want to avoid that.
User avatar
Senior Boarder

GK User
Fri Jan 27, 2012 11:14 am
So try changing that code to:
Code: Select all
<div id="gkWrap3">
             <div id="gkBottomWrap">
             
       <?php $this->loadBlock('bottom'); ?>
        </div>
        <div id="gkFooterWrap">   
       <?php $this->loadBlock('footer'); ?>
        </div>
    </div>
User avatar
Platinum Boarder

GK User
Mon Jan 30, 2012 10:53 am
ok, i changed that code but still was getting the black bar which was what i didnt want.

so i changed in template css this;

Code: Select all
#gkBottomWrap { background: #000; overflow:hidden; font-size: 12px; color:#fff; padding: 0 0 22px}


to this;

Code: Select all
#gkBottomWrap { }


and i got rid of the the black bar.

it looks the way i want it to but is that a solid code change? i mean will it screw anything else up?

thx again :)
User avatar
Senior Boarder

GK User
Mon Jan 30, 2012 2:10 pm
Cool you could do that. It won't affect to other places so don't worry :)
User avatar
Platinum Boarder


cron