HOW TO ADD "CHANGE TEXT SIZE AND FONT FACE GADGET" FOR BLOGGER
How to Add Text And Font Gadget To Your Blog
1. Login to your blogger dashboard--> Layout-->'Add A Gadget'--> Choose HTML/JavaScript
2. Copy and paste the code below into the HTML/JavaScript gadget :
function go1(){
if (document.selecter2.select2.options
[document.selecter2.select2.selectedIndex].value != "none") {
document.getElementById('main').style.fontSize
=document.selecter2.select2.options
[document.selecter2.select2.selectedIndex].value
}
}
function go2(){
if (document.selecter2.select3.options
[document.selecter2.select3.selectedIndex].value != "none") {
document.getElementById('main').style.fontFamily
=document.selecter2.select3.options
[document.selecter2.select3.selectedIndex].value
}
}
Times New Roman
Arial
Book Antiqua
Bookman Old Style
Century Gothic
Comic Sans Ms
Tahoma
Trebuchet Ms
Verdana
8
9
10
11
12
14
16
18
3. Save HTML/JavaScript you are done.