Margins on the left and right side

Hi,

Is there way to stretch the workable screen to entire monitor screen, left and right gaps I need to cover for big screens.

Thanks,

If you are on a paid plan, you can use custom CSS to change everything (styling).

I am on paid plan, could you please let me know how shall I proceed

not sure its the best way but i have gotten it to work with

div[class*="section-container"] >div { max-width: 100vw; } div[class*="container-padding-md"] { max-width: 100vw; } div[id*="nav-root"] div[class*="section-container single-column"] { max-width: 100vw; }

i place my content in containers and apply the style to the container, also have added style to setting page/appearance


The way you did it is directly targetting the div. The value you entered in the class name field is invalid. If you want to directly target this container, use a custom name and then use that .custom-name class in your Custom CSS code.

1 Like

thanks for the heads up!

1 Like

Anytime!