Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #734971

    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!

    #736063

    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

    #736103

    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;
    }
    }

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Boxed layout only above a certainly width?’ is closed to new replies.