Viewing 3 replies - 1 through 3 (of 3 total)
  • ibrahimibrahim

    (@ibrahimmhdibrahim)

    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

    Thread Starter hugobablon

    (@hugobablon)

    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.

    Thread Starter hugobablon

    (@hugobablon)

    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…

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How do I remove margins?’ is closed to new replies.