IF the name of the image you want in the header background is
smokingplaces.jpg
Then upload it to the www.smokingplaces/images directory.
Netxt go back to
#logoWrapper {
margin: 0 auto;
padding: 0;
width: 907px;
height:100px;
background: #f2f2f2;/* url(../images/smokinlaces.jpg) no-repeat;*/
position: relative;
and change it to
#logoWrapper {
margin: 0 auto;
padding: 0;
width: 907px;
height:100px;
background: #f2f2f2; url(../images/smokinlaces.jpg) no-repeat;
position: relative;
HTH