I’m using BeautyTips the first time and set the plugin options like this:
$('.info').bt({
width: 230,
positions: 'right',
fill: '#fff',
cornerRadius: 0,
strokeWidth: 3,
strokeStyle: '#e95d0f',
spikeLength: 9,
spikeGirth: 17,
overlap: -10,
cssStyles: {
color: '#787887',
padding: '10px 15px'
},
hoverIntentOpts: {
interval: 200
},
showTip: function(tip) {
$(tip).fadeIn(400);
},
hideTip: function(tip) {
$(tip).fadeOut(200);
}
});
It should look like the following:

But gets rendered like this:

(top stroke is 2px instead of 3px and spike is cropped)
I have the latest version 0.9.5-rc1.
Does anyone know a fix for that?
Greets Simon
In jQuery 1.8 the curCSS() function has been removed. The following minified code uses css() instead.