Yes Chef Studio

Fix side scrolling on all devices

The .page-wrapper is a common class used to wrap the entire content of a page. Sometimes, you might encounter elements that overflow the boundaries of your page, causing horizontal scrollbars or layout shifts. To address this, you can use the overflow: clip; property to prevent any content from overflowing the boundaries of the .page-wrapper:

 <style> 

.page-wrapper {
overflow: clip;
}

</style>