Please advise as to how to take away the change font size tool bar / breadcrumb bar in the pages.
Thanks!
In template configuration you have Customize tools for page in Features menu. In this field you can select where the menu tools are not show, for example the menu Itemid is 22, so you need to write 22=disabled then in this menu the font size tool bar will not appear.
<?php if($this->getTools()) : ?>
<div id="gk-tools">
<?php $this->loadBlock('usertools/tools') ?>
</div>
<?php endif; ?>
Yes, you need to delete lines from 75-79
- Code: Select all
<?php if($this->getTools()) : ?>
<div id="gk-tools">
<?php $this->loadBlock('usertools/tools') ?>
</div>
<?php endif; ?>
from file main.php in your template folder.
<!--<?php if($this->getTools()) : ?>
<div id="gk-tools">
<?php $this->loadBlock('usertools/tools') ?>
</div>
<?php endif; ?>
</div>
<?php endif; ?>-->