Hi! Is there a way to make the navigation boxed but keep the rest of the page flexible? I saw you had some code like below as a solution but not sure how to use it or if it still works.
body.device-xl:not(.stretched) #header.sticky-header #header-wrap {
width: 1220px;
left: 50%;
margin-left: -610px;
}
body.device-lg:not(.stretched) #header.sticky-header #header-wrap {
width: 1000px;
left: 50%;
margin-left: -500px;
}
I also tried removing the "stretched" class below but then the whole page is boxed.
<body class="stretched">
Thanks for any help.
