How to handle responsiveness ?
The responsiveness is based on the width of the iframe in which the wall is contained. The iframe size adapts to the width of the screen (computer, cell phone, etc) but doesn't necessarily equal to it, it can be smaller.
These options allow you to accurately manage the behavior of each component for each screen size.
Component settings
In the options of each component, you can manage responsiveness.
Options allow you to precisely manage the behaviour for each component for each screen size.
- Visible/Hidden: the element will be visible or hidden
- Flexible: the width of the element will adapt to the space available
- Fit to content: the width of the element will fit to its content
- x columns: the width of the element will be fixed
Desktop view

Mobile view

Settings in the Dashboard
The image has been hidden for small screens.

Responsive management via CSS
If you want to be more precise in the responsiveness management, you can use CSS and define what to display based on desired screen size using media queries.
Edit appearance properties > Custom CSS > Apply the desired style with the following CSS:
@media screen and (max-width: 767px) {
}
@media screen and (max-width: 539px) {
}
Updated on: 31/03/2026
Thank you!

