Enter this custom CSS to add a background image to your content area.
#content {
  background-image: url("your-image-url.png");
  background-color: #cccccc;
  background-repeat: no-repeat;
  background-position: center top;
}
Read more about different background properties in CSS.
