Text wrapping broken on mobile view due to the Easy Footer theme component

Hello,

It seems to this cause by this Easy Responsive Footer
The component has a css line #main-outlet which cause this.

There is an other report about this issue on the theme component topic.


You can use this quick fix until it is fixed.
Go to /admin/customize/themes and create a new component.
Click on mobile section css and add the following.

#main-outlet {
  width: 100%;
  max-width: 100%;
}

7 Likes