Hi dnl27,
I also had this problem.
I’ve fixed mine, by going into jquery.tippy.css and changing
.tippy_tip {
width: 450px;
height: 300px;
border-radius: 5px;
box-shadow: 0px 0px 3px #888, 4px 4px 6px #888;
z-index: 50;
}
To:
.tippy_tip {
width: 450px;
height: 300px;
border-radius: 5px;
box-shadow: none;
z-index: 50;
}
You could also adjust the width and make it smaller, which seems to take care of the problem too.
Best of luck!