Hi all!! I have a question regarding the Horizontal scrolling fro a normal group (so not a repeating group). Even though the Layout container is “Row” and not Column, I can only see the option Allow vertical scrolling.. How can I get the Horizontal scrolling when the page is under 320? Should I change the overall setting of the group layout as “Align to parent” rather than “Row”? Thank you as always for the support ![]()
unfortunately there is no way to do the horizontal scroll natively these days, without RG.
What you can do is put an html for that, it’s relatively easy, I’ll explain to you.
-
In Settings → General, check Expose the option to add an ID attribute to HTML elements.
-
Create an external Group (the “viewport”), fixed width (or max width limited) and Layout = Row, Wrap = no.
-
Give an Attribute ID to it, e.g.: scroller.
-
Inside it, place an inner Group wider than the outer one (or several groups side by side), to generate overflow.
5)Add an HTML element to the page with:
#scroller { overflow-x: auto; overflow-y: hidden; } #scroller > * { flex: 0 0 auto; }with these steps will solve, then you study more about flex and css to go incrementing