Hello @hugobablon
Your problem isn’t with the margins its with the maximum width of the page.
If you inspect the page there is a css rule with:
max-width: var(–responsive–aligndefault-width);
I am guessing you can change thins from the block in the dashboard where you are outputting you content
In the block dashboard I can only change the column width, and its already on 100%. If it put 200% it will take the space on the text content without make it wider.
I have added this in CSS Additional
@media only screen and (min-width: 192px) {
:root {
--responsive--aligndefault-width: min(calc(100vw - 10 * var(--global--spacing-horizontal)), 1000px);
--responsive--alignwide-width: min(calc(100vw - 10 * var(--global--spacing-horizontal)), 1000px);
}
}
It’s way better on computers but completly broken on mobile, i am lost…