My laptop at work has a resolution of 1366x768 and the main site seems to have CSS that is overriding the layout for that resolution. As a result, the "Fixed" layout isn't working. Everything is stretched to take up the entire screen.
This appears to be what is causing the issue:
This appears to be what is causing the issue:
Code:
@media only screen and (max-device-width: 1366px) and (min-device-width: 768px) and (orientation: landscape) {
#mainContainer {
min-width: 98% !important;
max-width: inherit !important;
margin: 12px auto;
padding: 0;
}
}