By default WordPress adds a sidebar to your pages, if you want to remove this across the site this little piece of code makes it easy!
Don’t worry about the code, you only have to copy and paste 🙂 No coding skills required.
Here’s the code to copy:
/*** Remove the divider line between content and sidebar ***/
#main-content .container:before {background: none;}
/*** Hide Sidebar ***/
#sidebar {display:none;}
/*** Expand the content area to fullwidth ***/
@media (min-width: 981px){
#left-area {
width: 100%;
padding: 23px 0px 0px !important;
float: none !important;
}
}