I'm using the jquery tooltipster plugin (https://iamceege.github.io/tooltipster/) and I'm having a problem with the positioning. I place images on a map and position them absolutely. I want the tooltip to appear at the bottom, but I can't get it to work: they keep appearing at the top of the image and the upper bit of the tooltip goes offscreen (see here - tooltip appears when hovering over the tree).
This is my code: can anybody give me an idea what I'm doing wrong? Or why the tooltip doesn't appear at the bottom?
<script>
$(document).ready(function() {
$('#tt1').tooltipster({
minWidth: 400,
maxWidth: 400,
content: $('<span><p><strong>Duffel-West</strong><br> <br><img src="006.jpg"><br> <br>Kwb herorienteren in Duffel. Hoe kunnen we via het transitieverhaal nieuwe leden vinden? Op de infoavond rond de stroomafschakelingsprocedure zijn er mensen gevonden om een repair cafe te organiseren. Dit repair cafe was een succes met meer dan 100 bezoekers. Het is nu de bedoeling om dit twee maal per jaar te organiseren. Alsook dit te combineren met andere transitieactiviteiten. <br> <br><strong>Status</strong><br>Kwb Duffel-West slaagt in zijn herorienteringsproces. </span>'),
position: 'bottom'
});
});
</script>
</head>
<body>
<img src="i1.png" width="30" height="41" id="tt1" style="position: relative; left:250px; top: 270px; cursor:crosshair" class="tooltip 1" title="Duffel West">
</body>