See the link in the private content. I have it set to a boxed layout that is 1440px wide. At 1440 pixels I’d like the content area to fill the entire window and then start to scale down as if the site was set to stretched layout. Possible?
Thanks!
Hey Kevin,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
.responsive .boxed#top, .responsive.html_boxed.html_header_sticky #header, .responsive.html_boxed.html_header_transparency #header {
width: 100%!important;
max-width: 100%!important;
}
Best regards,
Yigit
Thanks, Yigit! This was very close to what I needed. For anyone else who finds this thread, I added the following to the Quick CSS:
.responsive .boxed#top, .responsive.html_boxed.html_header_sticky #header, .responsive.html_boxed.html_header_transparency #header{
max-width: 1440px !important;
}
@media only screen and (max-width: 1440px) {
.responsive .boxed#top, .responsive.html_boxed.html_header_sticky #header, .responsive.html_boxed.html_header_transparency #header {
width: 100%!important;
max-width: 100%!important;
}
}