Code:
url(file:///C|/Users/Cliffecm/AppData/Local/images/boardzen.jpg)
This is the path to a file on your home pc, not the web server location.
Code:
url(../images/boardzen.jpg)
is the right way to point to an image in /includes/templates/your_template/images/.
Your stylesheet has an error right at the top:
Code:
body {
background-color:#FFFFCC;
#logoWrapper{
background-image: url(file:///C|/Users/Cliffecm/AppData/Local/images/menuboard1.jpg);
}
;
background-repeat:repeat;
background-attachment:fixed;
margin: 0;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 62.5%;
color: #00000;
background-color: #FFCCCC; }
The #logoWrapper should not be inside the body {} rule.