
Để thêm tiện ích này bạn hãy làm theo hướng dẫn sau nha
- Vào blogger > Mẫu > Chỉnh sửa HTML
- Chọn mở rộng mẫu Tiện ích
- Dán đoạn code bên dưới trước thẻ </head>
<!-- Start Text re size gadget by chinhtrucblog.blogspot.com-->
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js' type='text/javascript'/>
<script>
$(document).ready(function(){
//ID, class and tag element that font size is adjustable in this array
//Put in html or body if you want the font of the entire page adjustable
var section = new Array('span','.section2');
section = section.join(',');
// Reset Font Size
var originalFontSize = $(section).css('font-size');
$(".resetFont").click(function(){
$(section).css('font-size', originalFontSize);
});
// Increase Font Size
$(".increaseFont").click(function(){
var currentFontSize = $(section).css('font-size');
var currentFontSizeNum = parseFloat(currentFontSize, 10);
var newFontSize = currentFontSizeNum*1.2;
$(section).css('font-size', newFontSize);
return false;
});
// Decrease Font Size
$(".decreaseFont").click(function(){
var currentFontSize = $(section).css('font-size');
var currentFontSizeNum = parseFloat(currentFontSize, 10);
var newFontSize = currentFontSizeNum*0.8;
$(section).css('font-size', newFontSize);
return false;
});
});
</script>
<!-- End Text re size gadget by chinhtrucblog.blogspot.com -->
- Lưu ý : Trong blog của bạn đã chèn dòng màu đỏ rồi thì xóa đi nha. Nếu chưa có thì để lại.
- Tìm đoạn
<div class='post-header-line-1'/>
- Và dán sau nó đoạn code bên dưới
<!-- Start Text re size by chinhtrucblog.blogspot.com -->
<b:if cond='data:blog.pageType == "item"'>
<table border='0' style='float:right; margin-left:5px;'><tr><td><img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiGDpRYMBiqR8A7KLQAw-mXSHH46iPBkQ11MwEplZwKTWDB-sjDUAT8w3OYKDI2s0Y-k3Gx2X88qHoEuHIT_3PvwEcjtIbDNyD8-OIPDrs_MPwxhjUTPcigR20DGY6xlNGLhv6xqHfRD66W/h120/font-size-blogger-gadget.png'/> | <a class='increaseFont' style='cursor: pointer; cursor: hand;' title='Larger Text'><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhIaFAO8mZ6s_U_0Ux2qvsaAAld-uHyWqfqBEi9lc42wH3y27S5N0Z4fZ_lKAr7wR-MxewMZZUvWxBHoS8BTpLJaIi1ulGV9FH5zU7H2cwqd2EOAWfu3NdFLy9d38sqtQ9drLWuahZ-7j9M/h120/bigger-font+-+Copy.png'/></a>
<a class='decreaseFont' style='cursor: pointer; cursor: hand;' title='Smaller Text'><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjfQLVe-2rleDMJzSnaEBUaet6QR79zZiNdKc8LnRJQdV1DxdjMhtgNKnQxfxk95Z8as8xK1AqQ6pm1TIVlKkTrXCsPgQH71di0HpOe0BhNtBeaYqolBtFIQWF7IarN_nOAoWEctEYzcvf7/h120/smaller-font.png' style='cursor: hand;'/></a>
<a class='resetFont' style='cursor: pointer; cursor: hand;' title='Reset Text Size'><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi7WR5CcndwSSIiGWckEVnJ7XbFxIrbJGpmZO1Msxyrg0qJWgZS_sY2BYg7AODvJdMjGOaCsA_FhKffQvY6ZzEPGnQ1r0L5ltRCRuw2bJU1BcjxE9-iISKNptb86jJv0OgzVy0ydcbmADXS/h120/reset-font.png' style='cursor: hand;'/></a></td></tr></table>
</b:if>
<!-- End Text re size by chinhtrucblog.blogspot.com -->
- Tìm code sau
<data:post.body/>
- Thay thế tất cả đoạn <data:post.body/> bằng code bên dưới
<span><data:post.body/></span>
- Lưu lại và tận hưởng kết quả thôi.
Chúc các bạn thành công