Coding errors:
Reset.css is not a CSS file, it is an HTML document.
Open general.css file and replace what you have now with this:
@charset "UTF-8";
/* CSS Document */
body {
background-image: url(../images/column.svg);
font-size: 100%;
font-family: arial, Helvetica, sans-serif;
width: 980px;
margin: 0 auto;
}
.baseline { background-image: url(../images/baseline.svg); }
/* Masthead */
.masthead { background-color: #666; }
.logo { float: left; }
img {
width: 100px;
height: 100px;
}
/*menu*/
nav ul {
margin: 0;
padding: 0;
background-color: #888;
}
nav li {
list-style: none;
display: inline-block;
margin: 12px;
text-transform: uppercase;
color: #FFF;
text-decoration: none;
}
nav li a {
color: #FFF;
text-decoration: none
}
nav li a:hover, nav li a:focus, nav li a:active { background-color: #666; }
nav .selected { background-color: #666; }
/* Content */
.wrapper {
background-color: #CCC;
overflow: hidden;
}
.left {
width: 65.25%;
float: left;
}
.right {
width: 34.75%;
float: right;
}
article { background-color: #FFF; }
article h2 { font-size: 100%; }
article p {margin-bottom:0;}
article p: last-child { margin-bottom: 0; }
aside { padding: 12px; }
.box { background-color: #FFF; }
.box h3 { }
.bottom { background-color: #999; }
.bottom p { color: #FFF; }
/********************/
Also upload your background images to your server. They 404 are not found.
Nancy O.