Disable AAA Button...

GK User
Fri Feb 18, 2011 12:19 pm
Hi,

can somebody tell me where I can disable the AAA Text Size Button? Searched for it, but without any success...

Cheers
User avatar
Fresh Boarder

Konrad M
Fri Feb 18, 2011 12:26 pm
Hi,

Try go to Template Manager choose your template and go to Features section. Than set Tools to OFF.
User avatar

GK User
Fri Feb 18, 2011 7:10 pm
alernative add this to override.css and enable it.

Code: Select all
btn-tools { display:none }
User avatar
Platinum Boarder

GK User
Sat Feb 19, 2011 5:45 am
...hi together ...

Sorry, usually I do not have to ask for every step, but it did not work...

-there is no Button or section that is called "tools" in the feature area of the template
-tried to insert the css rule to the override css ... nothing happens

Cheers
User avatar
Fresh Boarder

Konrad M
Sat Feb 19, 2011 7:32 pm
Hi,
Add to override.css this
Code: Select all
#gk-tools {
display:none;
}
User avatar

GK User
Mon Feb 21, 2011 11:10 am
This does not work for me, the font sizer remains! :(
User avatar
Fresh Boarder

Konrad M
Mon Feb 21, 2011 11:13 am
Can you give us url to your site, please?
User avatar

GK User
Mon Feb 21, 2011 11:32 am
hmmm
Code: Select all
gk-tools { display:none }

works on the demo of black and white..
User avatar
Platinum Boarder

GK User
Mon Feb 21, 2011 12:18 pm
Ho do I send a PM?
User avatar
Fresh Boarder

Konrad M
Mon Feb 21, 2011 12:21 pm
User avatar

GK User
Mon Feb 21, 2011 12:25 pm
Hello,

cheers for all your answers, I disabled it via the css file ... visibility: invisible;

...works that way

Thx

Best regards

Markus
User avatar
Fresh Boarder

GK User
Mon Jun 27, 2011 11:34 am
templatesgk_blackandwhitelayoutsblocksmain.php
line : 65

Code: Select all
                        <?php if($this->countModules('breadcrumb') || $this->getTools()) : ?>
                              <div id="gk-top-nav" class="clear clearfix">
                               <?php if($this->countModules('breadcrumb')) : ?>
                               <div id="gk-breadcrumb">
                                  <?php if($this->countModules('breadcrumb')) : ?>
                                  <jdoc:include type="modules" name="breadcrumb" style="none" />
                                  <?php endif; ?>
                               </div>
                               <?php endif; ?>

                               <?php if($this->getTools()) : ?>
                               <div id="gk-tools">
                                  <?php $this->loadBlock('usertools/tools') ?>
                               </div>
                               <?php endif; ?>
                              </div>
                              <?php endif; ?>

change

Code: Select all
                        <?php if($this->countModules('breadcrumb')) : ?>
                              <div id="gk-top-nav" class="clear clearfix">
                               <?php if($this->countModules('breadcrumb')) : ?>
                               <div id="gk-breadcrumb">
                                  <?php if($this->countModules('breadcrumb')) : ?>
                                  <jdoc:include type="modules" name="breadcrumb" style="none" />
                                  <?php endif; ?>
                               </div>
                               <?php endif; ?>


                              </div>
                              <?php endif; ?>
User avatar
Fresh Boarder


cron