I'm trying to remove grey background behind calendar title but not having any luck. This is the default calendar control found in the toolbox. Can anyone see what I'm missing?
My best guess was:
#Calendar1 td
{
background-color: transparent;
}
but didn't work. I can't seem to get a handle to that background color.
You need to use the TitleStyle-BackColor="Transparent"
property like
<asp:Calendar ID="Calendar1" runat="server" TitleStyle-BackColor="Transparent">
</asp:Calendar>