Site logo

Archived topic

Extra white space on right side

1 reply · Started by Roberto Tarzia on December 23, 2020

Viewing posts 1–2 of 2

Hi, I noticed that after the last update of the theme, all the sites on which I am using Generatepress + Elementor have appeared white space at the side of the site. These are some examples:

https://heloicosmetics.it/
https://prnt.sc/w8f2b0

https://hwcoach.it/
https://prnt.sc/w8f2z2

https://fotocomefare.com/
https://prnt.sc/w8f43y

How can I solve? I checked all my sites and it only appeared where I installed Generatepress, from mobile then the thing is expanded a lot, some pages are very wide from mobile, like this

https://fotocomefare.com/i-fondamenti-della-street-photography-ii-versione/

Hi there,

you have multiple elements in your content that are overflowing their containers, which is causing the issue.

You can add this CSS to your site, which is what some other themes do, to stop all unintended overflow:

html,  body {
    overflow-x: hidden;
}

Or you can identify each element that is overflowing and fix those issues, it generally haappens when elements have odd margins and padding applied to them. This article explains a good method for identifying the problem elements:

https://css-tricks.com/findingfixing-unintended-body-overflow/

This archived topic is closed to new replies.