Jquery tooltip plugin is great tool to explain a lot from a single word.You can easily implement this in your blog also it is very easy to use.You can highlight some words and add a tooltip to them,when any user hovers on the word a smooth tooltip will appear just above of the highlighted word with your description.This jQuery tooltip is designed by nettuts+ and I have reshared it on Helper Blogger.Now lets see how to add it and use it,
How To Add jQuery Tooltip To Blogger?
As I mentioned above the installation and usage of the tooltip is very easy,you just have to put some code in your template,just follow below simple steps.
1. Adding Tooltip Scripts
- Go to Blogger Dashboard > Template
- Download a copy of your template
- Click on Edit HTML
- Hit Proceed button
- Find for below code in your template
</head>
add below code just above it,
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> <script type="text/javascript" src="http://yourjavascript.com/21412118492/truebloggertricks. blogspot.com-tooltip.js"></script>
Note - If you have already added a jQuery plugin to your blog then don't add the first line from above code.
2. Adding Tooltip Styles
Find below code in your template,
]]></b:skin>
add below code just above it,
.tip { width: 212px; padding-top: 37px; overflow: hidden; display: none; position: absolute; z-index: 500; background: transparent url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEisQ1bYBpe0W3EVajREobesd47XD2K1kNKrhGW9QB-P0ifZSJzK6V6PPCyQV4LIXfbQgnJcsJ9QF7RxEd4N90zuwIX2OA3nElCx7Ll55_h9mmr1R1Zf-zD-ntdpU5pc4rfQtmitxj47fD8/s1600/hb_tipTop.png) no-repeat top; } .tipMid { background: transparent url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh787493H4492H5s74-F3mMiD7gD1MCveFjarxzDUJJi4xLIHSTgs2YLIvYNqx19ejwAcOeYyQr1kQER4CbIw_4K3k27tbCobNO4fX34aKYwqqYgdmd82xsO3JvjR0AllxH9ut39QvETzg/s1600/hb_tipMid.png) repeat-y; padding: 0 25px 20px 25px; } .tipBtm { background: transparent url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEinCejmZJ9kcHy-pvu_Zfy0RcneoValjoGPpvz5B4H6ftSQzC53o44y1NCT9e2SZVSmm4GLzHtB6XMC76tMAL4xESJiygSm3bZHyaL7xX6yX6khoCM62lIl3qikusIvwRMKzwiLLflZUuA/s1600/hb_tipBtm.png) no-repeat bottom; height: 32px; }
3. Using The Tooltip
If you want to add tooltip in blogger posts,then go to Edit HTML tab and add below code inside it.
<div class="tTip" title="Add Tooltip Message Here">Add Your Text Here</div>
- Replace
Add Tooltip Message Herewith the message which you want to appear in tooltip. - Replace
Add Your Text Herewith the text on which you want to appear tooltip.
Hope you have liked it :)

No comments:
Post a Comment