You’ll need the Toolbox plugin.
- Add ids to the reference element (reference) and to the groupfocus (groupfocus).
- Add JavascripToBubble element and enter ‘left’ as suffix, type ‘number’
- In the workflow where you show the groupfocus, add first a Run Javascript action (it has to run before you show the groupfocus) with the following code:
var element = document.getElementById('reference'); var reference = element.getBoundingClientRect(); bubble_fn_left(reference.left + YourDynamicOffset);
- In the code, replace YourDynamicOffset with the dynamic offset you want
- Add an HTML element with the code:
<style> #groupfocus { left: JavascripttoBubble A's valuepx!important; }</style>
- Edit: Obviously the ‘JavascriptoBubble A’s value’ has to be a dynamic expression!