How can i delete the right and left margin in a boxed layout. Looks not so good with this 50px? margin when the screen is narrower than the Page.
Hey Micha66!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.container { padding: 0; }
If that does not help, please post a link to your website and a screenshot showing the changes you would like to make.
Regards,
Yigit
Thanks Yigit. But what i mean is the margin, not the padding. I do not want to see the background of the boxed layout when i make the screen narrower. Do you know what i mean?
Hi!
Please add following code to Quick CSS
@media only screen and (max-width: 990px) {
body#top, #header {
width: 100%!important;
max-width: 100%!important;
}}
and adjust screen size (990px in the code above) as needed
Cheers!
Yigit
That works perfekt, thank ya Yigit!