Ecco un semplice tutorial per modificare il calendario che appare come widget:

editare il file styles.css e aggiungere la seguente riga

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#wp-calendar    {                      
                                        background: url(images/transparent.png) repeat;
                                    position: inherit;
                                        #border-top: 4px solid #555;
                                        #border-bottom: 4px solid #555;
                                        #border-left: 4px solid #555;
                                        #border-right: 4px solid #555;
                                        empty-cells: hide;
                                        font-size: 10px;
                                        font-style: bold;
                                        color: #68a804;
                                        text-transform: capitalize;
                                        width: 414px;
                                        height: 205px;
}

#wp-calendar td {
                                       
                                        color: #ccc;
                                        font: normal 15px 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
                                        letter-spacing: normal;
                                        padding: 4px;
                                        text-align: center;
                                        overflow-y: hidden;
                                        }

#wp-calendar th {
                                        font-style: normal;
                                        text-transform: capitalize;
                                        }
                                       
#wp-calendar a {
                                        display: block;
                                        color: #fff;
                                        text-decoration: none;
                                        font-style: bold;
                                        background: url(images/over-calendar.png) repeat-x;
                                        }