Hi Adedapo
Under Appearance > Customize > Page you can upload a Masthead Background Image, this is unfortunately only in Vantage Premium. If you’d like to stick with Vantage Free you could use a Custom CSS module/plugin and add one as follows:
/* Masthead */
header#masthead {
background-image: url("https://localhost/so/wp-content/uploads/2014/09/ujKaaIATKKx7vi5kkfQn__DSC39321.jpg");
}
Swap my url with yours.
For a more responsive background in the masthead, try this snippet instead:
/* Masthead Background Image Cover */
header#masthead {
background-image: url("paper.gif");
background-repeat: no-repeat;
background-position: center center !important;
background-attachment: fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}