Modify anything related to design using CSS.

Avoid modifying the original theme files and use this area instead to preserve changes.

HINT: View the style.css file and find elements to change and put them here.

/* Change the background. */
body { background: #ccc; }

/* Add a dotted line under the post. */
.post { border-bottom: dotted #ddd; }

/* change the background of the author of the posts comments */
.bypostauthor { background: #fdfdf4; }

/* Add Image to Header AND make it clickable back to home - adjust height width and location of image*/
#header {width: 980px; height: 120px; background: url('/images/header.png') top center no-repeat; overflow: hidden;}
#header h1 {padding: 0;}
#header h1 a {display: block; width: 980px; height: 120px; text-indent: -9999px;}
#header .description {display: none;}

/* Hide the Text in the header. */
#header h1 a, #header .description { display: none; }

/* Rounded Corners (not in IE) */

.narrowcolumn {
-moz-border-radius: 10px;
-khtml-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
}

/* make the html page not wobble when reloading to a new page. */ html { overflow-y: scroll; }