NetTalk Central

NetTalk Web Server => Web Server - Ask For Help => Topic started by: AZIS350 on April 20, 2011, 06:44:21 AM

Title: Adjust HotDate Font Size - Big mode
Post by: AZIS350 on April 20, 2011, 06:44:21 AM
Is there a setting to adjust the font size of the number of the day that appears on the hotdate calendar when set to BIG default set mode? We are setting the overall body font size for our application to 15 point (sometimes larger when it's used on an iphone) and once you get above around 13 or 14 point, it looks like the day number becomes too large to display and resets to a very small number (in the upper portion of the day box) and therefore hidden under the text label that displays on the day (when there is an appointment related to that day).

So it looks like the calendar day font is affected by the overall body font. Can this be overriden so the day font is defined by it's own font size? Thanks.
Title: Re: Adjust HotDate Font Size - Big mode
Post by: Bruce on April 20, 2011, 07:27:49 AM
In your custom style file put;

.nt-label-empty{
font-size: 56pt;
}
.nt-label{
font-size: 56pt;
}

56 is the default, you can make it smaller.

Cheers
Bruce
Title: Re: Adjust HotDate Font Size - Big mode
Post by: AZIS350 on April 20, 2011, 09:12:48 PM
Excellent - thanks Bruce.