Hi Tiberiu,
For using the grid on a rather small screen, we added auto-scrollbars to the gridster-items by setting the following css:
gridster-item { overflow: auto!important; }
When hovering, the handler-se is nicely placed in the right bottom corner with position:absolute :

But when scrolling to the right, the handler-se moves to the left along with the content of the gridster-item:

Can you fix this or help me with some external styling how to set this right?
Thanks in advance!
Melissa
Hi @MelissaVanDijk ,
Try adding the scrollbars to some div inside the gridster-item.
html
<gridster-item>
<div class="gridster-item-content">
Some content to select and click without dragging the widget
</div>
</gridster-item>
On gridster-item-content for example.
Thank you! That works. Solved :-)
Most helpful comment
Hi @MelissaVanDijk ,
Try adding the scrollbars to some div inside the gridster-item.
html <gridster-item> <div class="gridster-item-content"> Some content to select and click without dragging the widget </div> </gridster-item>On gridster-item-content for example.