hi, i'm new here , trying fumble way through structure of joomla , it's relevant component parts.
i wonder if point me towards information or on how can change "font size : bigger : rest : smaller" text @ top of beez_20 template 3 shiny new graphic icons?
i'll no doubt learn , how element structured , i'll able create kinds of future havoc
)
seriously, appreciate or advice.
steve
i wonder if point me towards information or on how can change "font size : bigger : rest : smaller" text @ top of beez_20 template 3 shiny new graphic icons?
i'll no doubt learn , how element structured , i'll able create kinds of future havoc
seriously, appreciate or advice.
steve
the file "md_stylechanger.js" contains code. can change or destroy element there:
code: select all
function addcontrols() {
var container = document.id('fontsize');
var content = '<h3>'+ fontsizetitle +'-</h3><p><a title="'+ biggertitle +'" href="#" onclick="changefontsize(2); return false">'+ bigger +'</a><span class="unseen">.</span><a href="#" title="'+resettitle+'" onclick="revertstyles(); return false">'+ reset +'</a><span class="unseen">.</span><a href="#" title="'+ smallertitle +'" onclick="changefontsize(-2); return false">'+ smaller +'</a></p>';
container.set('html', content);
}
Comments
Post a Comment