Hi aaronblrt11,
Thank you for your feedback, I sent and notified our technical team, and we will check it.
About the body width, you can use the following CSS code in the custom.css file:
@media (max-width: 1920px) {
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
max-width: 1440px;
}
}
Or:
@media (min-width: 1400px) {
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
max-width: 1440px;
}
}
We have tested and the CSS code work fine.