Issue after PRO update 2.1.2: two (double) scrolling bars

After the last update, two scrolling bars have appeared at out site:

I have used this fix to correct it:

body {
overflow: hidden;
}

But this didn’t happen with the previous version.

Hi there,

Glad to see you were able to get it fixed. While that CSS addresses the symptom, let me explain a bit why it’s happening so you can avoid the root problem.

Usually this happens when you add an explicit height to one of your footer bars but the content inside that bar pushes outside of the height.

For example, if you set the height to 10em it may look just fine until you reach a certain screen size. The text in that bar could wrap to an additional line and now the content is taller than 10em. The browser gives you a scroll bar so you can reach that content.

Setting your footer bars height to “auto” is usually the best option. If you need to control spacing around your content you can add padding on the bar instead of using “height” which is more rigid.

1 Like

Yes but only when I updated the site this problem arised.

I will follow your suggestion and replace the height spaces with padding ones.

Thank you.

Sounds good. It’s been something that we’ve seen from time to time since Pro was released. I’m not sure why it would have changed with the update.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.