Hi! @rjudah I also face this issue that my kinemasterdown.com looks beautiful in desktop mode but in the mobile version is blank. But i tried this :
replace from main.css
@media only screen and (max-width: 641px)
.container {
max-width: 360px;
margin: 0 0;
}
to
@media only screen and (max-width: 641px)
.container {
max-width: 360px;
margin: 0 auto;
}
Hope this will help 🙂