Search code examples
asp.netweb-controlsbackcolorasp.net-webcontrolcalendar-control

ASP.Net Calendar Control styling background behind title


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.

enter image description here


Solution

  • You need to use the TitleStyle-BackColor="Transparent" property like

    <asp:Calendar ID="Calendar1" runat="server" TitleStyle-BackColor="Transparent">
    </asp:Calendar>