How to make a “horizontal scroll” area:
Like my design draft:
How to make a “horizontal scroll” area:
Like my design draft:
hi @VIP this topic is very well described on this forum and also online in written or video form.
Please do your research first before creating request.
hello,
if you mean that you want to move your section horizontally while you scroll in view
I recommend this course:
horizontal scroll in webflow
and if you have any questions or problems you can check this preview link:
artFlare Template
I saw this video, and this video is about automatic horizontal scrolling when you scroll. What I want is for users to scroll horizontally only on their own, not automatically.
in this case do overflow:hidden
on your wrapper, and this should do the job. If not then set overflow-x: scroll
.
.flex-scroll {
overflow:hidden;
overflow-x: scroll;
}
From UX point of view It is IMO not good practice as users would not know they can swipe.
m2c
Thx! Worked.
Must add an overflow-x: scroll; Why doesn’t webflow make a button to enable this.