How to block "open info" "close info" in beez3 template of Joomla3.x?
Problem lies in index.php of beez3 at line no 159
<?php if ($showRightColumn) : ?>
<div id="close">
<a href="#" onclick="auf('right')">
<span id="bild">
<?php echo JText::_('TPL_BEEZ3_TEXTRIGHTCLOSE'); ?>
</span>
</a>
</div>
<?php if ($showRightColumn) : ?>
<div id="close">
<a href="#" onclick="auf('right')">
<span id="bild">
<?php echo JText::_('TPL_BEEZ3_TEXTRIGHTCLOSE'); ?>
</span>
</a>
</div>
So just get rid off the following lines of code
<div id="close">
<a href="#" onclick="auf('right')">
<span id="bild">
<?php echo JText::_('TPL_BEEZ3_TEXTRIGHTCLOSE'); ?>
</span>
</a>
</div>
Comments