I am utilizing Svelte and Flowbite, both of which have a Popover feature.
By default, the Popover view appears above the element that triggered it. How can I make the Popover display above a different element? For example, I want to click a button at the bottom of the page and have the Popover appear at the top of the page above a text field. Essentially, I want the display location and trigger element to be different.
https://i.sstatic.net/b8khn.png
<button data-popover-target="popover-click" data-popover-trigger="click" type="button" class="...">
<div class="...">
<h3 class="...">Trigger Popover on Click</h3>
</div>
<div class="...">
<p>Here is some engaging content. Pretty cool, right?</p>
</div>
<div data-popper-arrow></div>
</button>