Tool tip render location

Jake Hakoda Shirley

Active member
Hey guys, I am designing a rankings table and I am having an issue with the layout and the relationship with the tool tip. Below is an image showing how the tool tip is rendering above the top-left of the value. Any ideas?

tooltip.webp
 
Without seeing some source code it'll be hard to help you.

It looks like you can offset the positions using the following HTML attributes:
data-offsetX
data-offsetY
data-position (accepts top, right or left)
 
Is there any way to get the width of a table element? I just don't want to offset by static values, as users may experience it differently causing offset.
 
If I could see the source code (i.e. your site is online) it'd be easier to debug, because the JS auto-offsets depending on the location of the current element. The width of the element you could grab using {xen:calc}.
 
Can't change any of the data to play around with it, damn.

You should try applying a data-position="right" to the element, seeing if that changes it.
 
Top Bottom