I thought I'd like to share this one out as I've tried searching but can't find any solution to this problem I was having. Using the blue colorset of Bulletproof, I found that the calendar's day links and day text, both have similar colors (on my monitor at least) and there wasn't any css code in the blue_style.css.
But finally I found something in plugin_calendar.tpl and through trial and error (I'm a noob in css btw, just know how to copy/paste

), I came up with the codes below that I've added to my custom style css file and it's working as I wanted.
So, for those who are looking for the same thing, just add the codes below to your bulletproof css file and customized your heart's out. Hmm... I wonder if there's some other better way though.
Code: Select all
.serendipity_calendarDay a {
font-weight: bold;
color: #000000;
text-decoration: underline;
}
.serendipity_calendarDay a:hover {
font-weight: bold;
color: #FF0000;
text-decoration: underline;
}
Btw, I've just noticed that the day link in the calendar links to the Entry Body but not the whole post (Entry Body + Extended Body). Is this meant to be this way?