Hi,
really a good work!
I’ve found an error (presumibly) in the default CSS style sheet.
.previousYear img,a,span{
margin-right: 2%;
text-decoration: none;
border: none;
}
.previousMonth img,a,span{
margin-right: 2%;
text-decoration: none;
border: none;
}
.nextMonth img,a,span{
margin-right: 2%;
text-decoration: none;
border: none;
}
.nextYear img,a,span{
margin-right: 2%;
text-decoration: none;
border: none;
}
should be changed to
.previousYear img, .previousYear a, .previousYear span{
margin-right: 2%;
text-decoration: none;
border: none;
}
.previousMonth img, previousMonth a, .previousMonth span{
margin-right: 2%;
text-decoration: none;
border: none;
}
.nextMonth img, .nextMonth a, .nextMonth span{
margin-right: 2%;
text-decoration: none;
border: none;
}
.nextYear img, .nextYear a, .nextYear span{
margin-right: 2%;
text-decoration: none;
border: none;
}
unless the style declarations of the classes above will also be applied to the elements <a>, <span> globally.
In the attachment there is the modified style sheet!
Bye,
Daniel