I'm really a newbie of wordpress and php in general, so I'm sorry if I'm asking something of so obvious:
I'm try to fix the layout of this site: www.fuorifuoco.org (Atahualpa 3.2)
The issue is, since my body color is white, how could I turn the calendar color to black (not the backgroud but the numbers, months, etc.)
I paste the slice of stlye.css I edited:
PHP Code:
/*-------------------- CALENDAR WIDGET --------------------*/
#calendar_wrap {
padding: 0;
border: none;
background-color: #ffffff;
color: #000000 !important;
}
table#wp-calendar {
width: 100%;
font-size:90%;
border-collapse: collapse;
background-color: #ffffff;
color: #000000;
margin: 0 auto;
}
table#wp-calendar caption {
width: auto;
background: #eeeeee;
color: #000000;
border: none;;
padding: 3px;
margin: 0 auto;
font-size: 1em;
}
table#wp-calendar th {
border: solid 1px #eeeeee;
background-color: #ffffff;
color: #000000;
font-weight: bold;
padding: 2px;
text-align: center;
}
table#wp-calendar td {
padding: 0;
line-height: 18px;
background-color: #ffffff;
color: #000000;
border: 1px solid #dddddd;
text-align: center;
}
table#wp-calendar tfoot td {
border: solid 1px #eeeeee;
background-color: #ffffff;
color: #000000;
}
table#wp-calendar td a {
display: block;
background-color: #ffffff;
color: #000000;
width: 100%;
height: 100%;
padding: 0;
}
Boris