My fixed layout website is not spanning the full width on mobile devices. There are gaps shown on the edges as depicted in the photo.
Encoure website: http://www.encourehr.com
I tried the following code, which removes the gaps, but ends up hiding my “Register Here” button as well.
.container_wrap.fullsize {
overflow-x: hidden;
}
How do I fix this?
Hi placewrightdesign!
Please add this on your custom.css or Quick CSS:
#main {
min-width: 910px;
}
.ls-wp-fullwidth-container {
min-width: 910px;
}
.ls-wp-fullwidth-helper {
min-width: 910px !important;
}
Remove browser cache then reload the page.
Cheers!
Ismael
I added the code and cleared the browser cache, but it didn’t seem to fix it. Any other thoughts?
Hey!
Please try this:
@media only screen and (min-width: 700px) and (max-width: 1500px) {
#main {
min-width: 1800px;
}
Cheers!
Ismael
Thanks, a min-width of 1550px seems enough for me.
However, the logo does not seem to be shifting with the rest of the content. Also, there remains a large white space at the bottom of the browser.