[Solved] Unwanted white space on mobile version


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.

2

solved Unwanted white space on mobile version