pab
pab

Reputation: 983

Setup and style qTips jquery

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

Answers (1)

Sivaram Chintalapudi
Sivaram Chintalapudi

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

Related Questions