Skip to content Skip to sidebar Skip to footer

Unwanted White Space On Mobile Version

I have found a unwanted white space in mobile version of my web site. this only happens in the mobile versions, in the desktop version everything is normal, I already checked if th

Solution 1:

Welcome to Stack Overflow. As Dylan pointed out, you should put more detail in your post so others can find answers in your questions. Please update your question to include relevant code and more specific details.

Regardless, I did some poking around and found out that your "margmarg" class has margins that are blowing out the page.

It is this line:

@media screen and (max-width: 600px) {
    .margmarg {
        margin-left: 1.6rem!important;
        margin-right: 1.6rem!important;
    }
}

The takeaway is that something with a width of 100% and a margin will end up being more than 100% width of the page.

Post a Comment for "Unwanted White Space On Mobile Version"