evietojat vajadzīgajā vietā sekojošu kodu :
<span style="float:right;">
<script>
$(function(){
    $('a').click(function(){
    var ourText = $('.entry');
    var currFontSize = ourText.css('fontSize');
    var finalNum = parseFloat(currFontSize, 10);
    var stringEnding = currFontSize.slice(-2);
    if(this.id == 'large') {
    finalNum *= 1.2;
    }
    else if (this.id == 'small'){
    finalNum /=1.2;
    }
    ourText.animate({fontSize: finalNum + stringEnding},600);
    });
    });
</script>

<style>

    #large,
    #small {
    float: left;
    display: inline;
    text-indent: -100em;
    overflow: hidden;
    width: 18px;
    height: 18px;
    margin-right: .417em;
    background-repeat: no-repeat;
    background-position: left center;
    background-image: URL('http://www.tvnet.lv/assets/images/iconFont.gif');
    }

    #small {
    background-position: -20px center;
    }
</style>
<a id='large' style="cursor:pointer;"></a><a id='small' style="cursor:pointer;"></a>
</span>