Fix Horizontal Scrolling

Sometimes when creating a new website, there can be overflow. That overflow allows for there to be extra white space and some horizontal scrolling when we are not wanting that. To fix this we just need to add some code to the “Custom CSS.” The below code is what you need to use to fix this problem.  

#page-container{
overflow-x: hidden !important;
}