Hello, I am using NetAdvantage vol 2011.1.1. Text of Month and Year is so small. How Can I change it's font size.
2. When Mouse is on the WebMonthCalender Control, It's Color change to Orange(matbe default). How Cai I change it's color.
Hello kkyacha,
you could use Appstylist or edit ig_monthcalendar.cssto change Text of Month and Year edit .igmc_MonthYear class:
.igmc_MonthYear{ font-size:12px; font-weight:bold; padding:0px 2px; color: #FFFFFF;}
to change orange color find .igmc_HoverDay class in ig_monthcalendar.css:.igmc_HoverDay{ background-color: #ff99ff; background-image: url(images/igmc_dayselected.gif); background-repeat: repeat-x; color:#FFFFFF; font-weight: bold;}
the orange square actually is the igmc_dayselected.gif image, so you will have to edit it.Hope this helps