How to make your DIVI website 100% width on mobile screen.
When using Boxed Layout in Divi for Desktop, the mobile has to be 100% width.
Using CSS in Wordpress.
/* Mobile 100% Width */
@media only screen and (max-width: 480px) {
#page-container,
#top-header, #main-header {
width: 100% !important;
}
}