# Scrolling Section Issue

**URL:** https://community.weweb.io/t/scrolling-section-issue/5377
**Category:** Ask us anything
**Created:** [November 13, 2023, 8:20pm UTC](https://community.weweb.io/t/scrolling-section-issue/5377 "2023-11-13T20:20:46Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![Jonny](https://avatars.discourse-cdn.com/v4/letter/j/47e85d/32.png) [@Jonny](https://community.weweb.io/u/Jonny)
#### Post date: [November 13, 2023, 8:20pm UTC](https://community.weweb.io/t/scrolling-section-issue/5377/1 "2023-11-13T20:20:46Z")

</div>

Issue here - Cannot get a container to scroll - [Loom | Free Screen & Video Recording Software | Loom](https://www.loom.com/share/bba27ccb55134e8198590c56ef03c3b8?sid=030ccd45-f326-415e-8aab-ca5f1105fd35)

Cannot get container to scroll at all. Tried setting multiple levels of parents to scroll and all the variations, and also set fixed heights etc.

Any thoughts? - Thanks - Jon

---

<div class="post-metadata">

### Author: ![Broberto](https://sea2.discourse-cdn.com/flex016/user_avatar/community.weweb.io/broberto/32/5918_2.png) [@Broberto](https://community.weweb.io/u/Broberto)
#### Post date: [November 13, 2023, 8:38pm UTC](https://community.weweb.io/t/scrolling-section-issue/5377/2 "2023-11-13T20:38:45Z")

</div>

You answered yourself, if it’s set to shrink, it will always respect the parent’s height, so either, set it to grow, or to none (the X). Then you have to deal with the layout changing.

---

<div class="post-metadata">

### Author: ![Jonny](https://avatars.discourse-cdn.com/v4/letter/j/47e85d/32.png) [@Jonny](https://community.weweb.io/u/Jonny)
#### Post date: [November 13, 2023, 8:50pm UTC](https://community.weweb.io/t/scrolling-section-issue/5377/3 "2023-11-13T20:50:27Z")

</div>

@Broberto thanks for the response man! But Ive tried both to no avail in the video. Neither will scroll. The only thing I can get to scroll is when I stretch the container beyond what the parent is (which i dont want to stretch, I want it to scroll)… What exactly should i do here lol?

---

<div class="post-metadata">

### Author: ![Broberto](https://sea2.discourse-cdn.com/flex016/user_avatar/community.weweb.io/broberto/32/5918_2.png) [@Broberto](https://community.weweb.io/u/Broberto)
#### Post date: [November 13, 2023, 9:10pm UTC](https://community.weweb.io/t/scrolling-section-issue/5377/4 "2023-11-13T21:10:54Z")

</div>

You need to make the parent div, overflow scroll, and the child div (the scrollable content) to be overflowing the div, that’s the whole point of the overflow property, it handles overflows. Can’t scroll if nothing is overflowing.

 ![Screenshot 2023-11-13 at 22.11.10](https://us1.discourse-cdn.com/flex016/uploads/weweb/original/2X/3/3dd6a8a1e702d4df059bc747d06bfb09845eeca4.png)

---

<div class="post-metadata">

### Author: ![Jonny](https://avatars.discourse-cdn.com/v4/letter/j/47e85d/32.png) [@Jonny](https://community.weweb.io/u/Jonny)
#### Post date: [November 13, 2023, 11:27pm UTC](https://community.weweb.io/t/scrolling-section-issue/5377/5 "2023-11-13T23:27:51Z")

</div>

Awesome man makes sense! I actually never understood how that part worked. @Broberto
