Reputation: 983
No matter what I do I cant seem to get my tool tips to look how they are on the website:
http://craigsworks.com/projects/qtip/features/#tips
I want my tooltip to look like the above, when: -
Can anyone help me, driving me daft!
Cheers
Upvotes: 0
Views: 90
Reputation: 466
$(document).ready(function() {
$('#toolTipElementId').qtip({
content: 'Tooltip Text to be displayed ',
style: {
tip: 'topLeft',
border: {
width: 2,
radius: 5,
color: '#6699CC'
},
width: 200
}
});
});
Upvotes: 1