Change width of pages for WordPress theme

Is there a way to change the width of all the pages, so that the background cannot be seen at all. I guess what I want to do is to make the page full width.

It will take a lot of time to modify it properly but in your case you might want to remove background color for wrapper so it will blend together with your white background.

Try adding this to Theme Options – Other – Custom CSS or inside style.css if you use Child Theme.

.wrapper {
	max-width: 1018px;
	background-color: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: none;
}
#footerarea .widget-wrap {
	background-color: none;
	border-top: none;
}