If you are trying to remove the slideshow add this to your custom css for the theme in the admin panel. admin / themes / customize, and choose the css tab. The empty box is where you put custom css. Be sure to click the save button at the bottom when you are done.
.cb-slideshow, .cb-slideshow::after {
display: none;
}
To change the background color to white also add this.
body {
background-color: #fff;
}