views:

162

answers:

0

When I specify rounded corners for my qtip tooltip only the right hand side are rounded, and the left hand side have notches cut in the corners where the rounded corner should be.

This shows up on at least firefox and IE.

This is the code I'm using

$('#test').qtip({
   content: 'test',
   show: 'click',
   hide: 'unfocus',
   style: {
       width: 200,
       color: 'black',
       textAlign: 'center',
       border: {
          width: 15,
          radius: 8,
          color: '#6699CC'
       }
    }

});