How to Change the Font Size Name? - Joomla! Forum - community, help and support
imanickam wrote:edit following css entry shown available in file layout.css located in directory \templates\beez\css.
before edit:code: select all
#fontsize
{
z-index:100;
position:absolute;
top:0;
right:0;
background:#fff;
color:#000;
}
after edit:code: select all
#fontsize
{
z-index:100;
position:absolute;
top:0;
right:0;
background:#fff;
color:#000;
display:none;
}
you comment/delete following lines of code available in file index.php located in directory \templates\beez.code: select all
<div id="fontsize">
<script type="text/javascript">
//<![cdata[
document.write('<h3><?php echo jtext::_('fontsize'); ?></h3><p class="fontsize">');
document.write('<a href="index.php" title="<?php echo jtext::_('increase size'); ?>" onclick="changefontsize(2); return false;" class="larger"><?php echo jtext::_('bigger'); ?></a><span class="unseen"> </span>');
document.write('<a href="index.php" title="<?php echo jtext::_('decrease size'); ?>" onclick="changefontsize(-2); return false;" class="smaller"><?php echo jtext::_('smaller'); ?></a><span class="unseen"> </span>');
document.write('<a href="index.php" title="<?php echo jtext::_('revert styles default'); ?>" onclick="revertstyles(); return false;" class="reset"><?php echo jtext::_('reset'); ?></a></p>');
//]]>
</script>
</div>
i have beez_20 , code little different wondering how can change name of font size?
what mean this? please explain?didszzz wrote:how can change name of font size?
Comments
Post a Comment