How can I change the fonts in my Calendar?: Difference between revisions


No edit summary
No edit summary
Line 2: Line 2:
<br />
<br />
For example to make the title of your events in the Monthly View a bit bigger you could use the following:<br />
For example to make the title of your events in the Monthly View a bit bigger you could use the following:<br />
<br />
<pre>
<style><br />
<style>
.calendar td a, .calendar td a:visited<br />
.calendar td a, .calendar td a:visited
{<br />
{
font: 18px tahoma;<br />
  font: 18px tahoma;
}<br />
}
</style><br />
</style></pre>
<br />
<br />
1. Log into Bravenet<br />
1. Log into Bravenet<br />

Revision as of 12:44, 1 December 2009

Unfortunately the Calendar service does not have a built-in way to change the fonts, however you can override the default fonts using custom CSS styles.

For example to make the title of your events in the Monthly View a bit bigger you could use the following:

<style>
.calendar td a, .calendar td a:visited
{
  font: 18px tahoma;
}
</style>


1. Log into Bravenet
2. Click on Online Calendar
3. Click on Custom HTML
4. Add the custom <style> code above the %%service%% tag
5. Click on Save Changes