Diese Seite verwendet das Hemingway-Theme. Nicht nur weil es einfach so gut passt, sondern auch weil es einfach gut aussieht. Leider jedoch war das Hemingway-Theme komplett in englisch.
Ich habe es daher übersetzt und noch etwas erweitert. Demnächst findet sich hier meine aktuelle Version zum Download!
Ein paar Änderungen waren allerdings noch nötig:
Änderungen / Ergänzungen am Stylesheet
/* Floating Images */
.floatl {
float:left;
margin: 4px;
}
.floatr {
float:right;
margin: 4px;
}
#primary{
color:#A0A0A0;
}
ul.children{
list-style-type:none;
margin:0.5em 0 0em 0;
border-top:0px solid #3D3D3D;
}
ul.children li{
list-style-type:none;
margin:0;
padding:0em 0em 0.2em 1em;
border-bottom:0px solid #3D3D3D;
}
#blogroll a{text-decoration: none}
#blogroll { text-align: justify; }
#blogroll a {color:#A0A0A0;}
#blogroll a:hover{color:#ffffff;}
Kategorien-Wolke
Ich habe wie ich es bei
annkavita gesehen habe (dem Blog meiner ehemaligen Mitbewohnerin Annka) eine Kategorien-Wolke eingebaut. Dafür muss einfach nur eine Datei “
category_cloud.php“ im Ordner
blocks angelegt werden.
< h2 >Kategorien< / h2 >
< ?php catcloud(); ?>
In dem Plugin catcloud müssen in der Datei catcloud.php noch die Zeilen 182-187 angepasst werden:
t#catcloud a{text-decoration: none}
t#catcloud { text-align: justify; }
t#catcloud a:after {content:”$catcloud_after”}
t#catcloud a:before {content:”$catcloud_before”}
t#catcloud a:hover {text-decoration: underline}
t#catcloud a { line-height: 110%; vertical-align: middle; }
Und noch ein kleiner Bug muss beseitigt werden: Lines 190ff
if(’‘ != $catcloud_font_face) {
$output[‘css’] .= “#catcloud { font-family: $catcloud_font_face }”;
}