Why is there a white space gap at the bottom of my mobile view?

My store website’s mobile view has a white space gap at the bottom on dawn theme.

Hi @xixial

This issue is usually caused by a missing closing tag in the HTML code or an incorrect height value in the CSS. You can try the following steps:

Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/base.css->paste below code at the bottom of the file:

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

Hope my answer will help you

1 Like

Thank you, it worked fine