Banshee
Banshee

Reputation: 15847

Qtip do not show icon?

Hi,

Pleas take look at this example : http://jsfiddle.net/snowman/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?

Upvotes: 0

Views: 326

Answers (2)

alex
alex

Reputation: 490617

Your CSS selector is not matching once qTip has modified the HTML.

Try removing the .tooltip prefix.

Works on jsFiddle.

Upvotes: 0

ifaour
ifaour

Reputation: 38135

It's because of your CSS Specificity: .tooltip .content .icon
try this instead:

.content .icon

example.

Upvotes: 1

Related Questions