Hi,
Pleas take look at this example : http://jsfiddle.net/snowm开发者_StackOverflowan/Hne3h/1/
If you hover over the questionmark you will get a qtip, the problem is that the question icon that is placed in the tooltip is not shown?
Any advice?
It's because of your CSS Specificity: .tooltip .content .icon
try this instead:
.content .icon
example.
Your CSS selector is not matching once qTip has modified the HTML.
Try removing the .tooltip
prefix.
Works on jsFiddle.
精彩评论