Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
45
about WebMonthCalender Text & OnMouseOver
posted

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.

Parents
No Data
Reply
  • 8160
    posted

    Hello kkyacha,

    you could use Appstylist or edit ig_monthcalendar.css
    to 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

Children
No Data