die Zeit für unkita

Weil unkita gefragt hat, mach ich dafür mal einen eigenen Eintrag, ist besser zu formatieren, als in den Kommentaren.

so gehts, die Sache mit dem Datum oben rechts:

Hier erstmal der HTML-Code:

<div class="date">
<span class="date1"><?php the_time('jS') ?></span>
<span class="date2"><?php the_time('F') ?></span>
<span class="date3"><?php the_time('Y') ?></span>
</div>

Die Funktion the_time() gibt jeweils Tag, Monat und Tag aus.
Der div-Layer muss dann halt noch ausgerichtet werden.

Und hier die css-Klassen dazu:

.date {
color: #fc3;font-weight: normal;text-align: right; float: right;
padding: 10px 0; margin-left: 10px;}
.date1 {font-size: 3em; display: block; color: #fb3;}
.date2 {font-size: 2em; display: block;}
.date3 {font-size: 2em; display: block; font-weight: bold; color: #fb3;}

Und fertig. So sollt es gehen.