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
1
| </head> |
add below code just above it,
1
2
| <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://code.helperblogger.com/jquery-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,
1
| ]]></b:skin> |
add below code just above it,
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| .tip { width: 212px; padding-top: 37px; overflow: hidden; display: none; position: absolute; z-index: 500; background: transparent url(https://lh6.googleusercontent.com/-0KM2ludeMBo/UALZZEBrqBI/AAAAAAAACmc/s-SnyEbuwR8/s1600/hb_tipTop.png) no-repeat top;}.tipMid { background: transparent url(https://lh4.googleusercontent.com/-Vu0rxFVABjQ/UALZYWnIryI/AAAAAAAACmY/M6hXn5zozh4/s1600/hb_tipMid.png) repeat-y; padding: 0 25px 20px 25px;}.tipBtm { background: transparent url(https://lh3.googleusercontent.com/-fcuks1eGyhM/UALZXjVS6CI/AAAAAAAACmQ/GZF8z7d7S4c/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.
1
| <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.
That's it done...
Please, leave your comments below.

0 comments:
Post a Comment