I want to make drop down calendar bigger and increase font size.
Using v14.2
Thanks
Hello Al,
If you want to style the font in the calendar you can use CSS style. You can either use the following code:
.igmc_Control td
{
font-size: 25px !important;
}
Or you can use the igmc_Header, igmc_DOW, igmc_Footer and igmc_Day classes in order to style the different parts of the calendar.
Please try this approach and let me know how it works for you.
Changing style helps with the size, but Font-Size does not increase font for drop down when I pick date.
It increase size for text box where date is shown.
Thank you for using our community.
If you want to change the size of the calendar, I can suggest you to use the .igmc_Control class and set the width and the height as you want. Here is a sample code:
.igmc_Control
height: 400px !important;
width: 400px !important;
For your second question, if you want to enlarge the font size, you can use the Font-Size property of the WebDatePicker and set it to the desired value.
If you have further questions, don’t hesitate to contact me.