Simplism

Screenshots

Code

In header.php I had to disable/delete the following section

    <div id="header-right">
        <?php include 'adsense/468x60.php';?>
    </div>

simply because the styles are still applied, even with no content inside.

In home.php I had to disable the ‘heading-content’ div section because it is replaced in functionality by the breadcrump

In the main css file I applied the following changes

body { color: #5c5c5c; }
#container { color: #5c5c5c; }
.sidebar-box ul { margin-left: -20px; }

The color was changed, because for me the contrast of the normal text was too low.

All further css additions are in a seperate file:

/* Simplism */
 
.breadcrump {font-size: 11px; font-weight: normal;}
 
.current_page_item { font-weight: bold; }
.current_page_item .page_item { font-weight: normal;}
.current_cat_item { font-weight: bold; }
 
h1 { margin-top: 20px; }
h2 { margin-top: 20px; }
h3 { margin-top: 20px; }
h4 { margin-top: 20px; }
h3.post-title{ margin-top: 0px; }
 
 
/* TOC Plugin */
.toc {
  border: #ccc solid 1px;
  /*float: left;*/
  font-size: .9em;
  margin: 0 0 15px 0px;
  width: 50%;
}
 
.toc ol {
  margin: 5px;
  padding-left: 30px;
}
 
.related-posts {
	background-color: #FFF; 
	border-top: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
	padding-left: 15px;
	padding-top: 0px;
	display: block;
	margin-bottom: 5px; 
	margin-top: 15px;
}
 
.landingsites{
	background-color: #FFF; 
	border: 1px solid #e7e7e7;
	padding-left: 15px;
	display: block;
	padding: 15px 15px 15px 15px; 
	width: 583px;
	float: left; 
}
 
.wp_syntax {
  color: #100;
  background-color: #fafafa;
  border: 1px solid #e0e0e0;
  margin: 0 0 1.5em 0;
  overflow: auto;
}
 
table{
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	border: 1px solid #e0e0e0;
	margin: 10px 0px;
} 
 
.blanktable {
	width: auto;
	border-collapse: collapse;
	border: none;
} 
 
 
td, th{
	line-height: 130%;
	vertical-align: top; 
	font-weight: normal; 
} 
 
 
table thead tr {
	border: solid #717171;
	border-width: 1px;
}
 
table thead th{
	letter-spacing: .1em; 
	color:#fff; /*color: inherit;*/
	background: #717171; 
	font-weight: bold; 
	text-align:left;
} 
 
table tbody th{
	border: solid #88b0d4;
	border-width: 1px 0;
	text-align:left;
	background: #88b0d4; 
} 
 
table tr {
	border: solid #d5d6d6;
	border-width: 1px;
}
 
td, th { padding: 6px; margin: 0px; } 
table tr.even th, 
table tr.even td {background: #f6f6f6; } 
table tr.odd th,
table tr.odd td {background: #fff; }
 
tr td.tablesubheader,
tr.odd td.tablesubheader,
tr.even td.tablesubheader  {
	background: #d5d6d6; 
	border: 1px solid #d5d6d6;
	color: #000;
}
 
.wp-pagenavi{
	margin-bottom: 10px;
	margin-top: 20px;
}
 
.wp-pagenavi a, .wp-pagenavi a:link {
	padding: 4px 6px 4px 6px; 
	margin: 2px;
	text-decoration: none;
	border: 1px solid #fff;
	color: #0997fa;
	background-color: #FFFFFF;	
}
.wp-pagenavi a:visited {
	padding: 4px 6px 4px 6px; 
	margin: 2px;
	text-decoration: none;
	border: 1px solid #fff;
	color: #0997fa;
	background-color: #FFFFFF;	
}
.wp-pagenavi a:hover {	
	border: 1px solid #8f9090;
	color: #F5C55E;
	background-color: #FFFFFF;
}
.wp-pagenavi a:active {
	padding: 4px 6px 4px 6px; 
	margin: 2px;
	text-decoration: none;
	border: 1px solid #8f9090;
	color: #F5C55E;
	background-color: #FFFFFF;	
}
.wp-pagenavi span.pages {
	padding: 4px 6px 4px 6px; 
	margin: 2px 2px 2px 2px;
	color: inherit;
	border: 1px solid #fff;
	background-color: #FFFFFF;
}
.wp-pagenavi span.current {
	padding: 4px 6px 4px 6px; 
	margin: 2px;
	font-weight: bold;
	border: 1px solid #fff;
	color: inherit;
	background-color: #FFFFFF;
}
.wp-pagenavi span.extend {
	padding: 4px 6px 4px 6px; 
	margin: 2px;	
	border: 1px solid #fff;
	color: inherit;
	background-color: #FFFFFF;
}