Do I need a webpage to share my calendar with others?

Not at all. Your public calendar has its own web address:

http://www.localendar.com/public/yourmembername

Many groups, churches, schools, etc choose to publish this direct address in their newsletters and flyers.

localendar will default to displaying a "month-block" style view at that URL, unless you select a different format.

Why aren't there Arrows on my Web Site?

Whether or not you see the arrows on your published calendar depends on how you have chosen to publish it. If you have selected the "fully interactive embedded calendar" from the Publish Wizard, your calendar will have the arrows. However, since this style relies on an inline frame within your page, it is possible that the calendar could be "cut-off" if it contains a lot of information (see the question below). The non-interactive (static) embedded calendar works differently. It doesn't use an inline frame, and it will always automatically expand or contract to fit the size of your calendar's data perfectly. However, with this view style, visitors cannot move between different periods.

Why is my Calendar "cut off"? (on the sides or bottom)

This situation occurs when you have published a calendar using the "my calendar in an <iframe>" embedded style. This style relies on an inline frame (iframe) to display your calendar. This frame has a fixed size, and if your calendar exceeds this size, it will be clipped or "cut-off" at the bottom or sides. There are a few remedies you can take:

Which method is right for you? It all depends on the design of your site, so please experiment and use the solution you like best.

May we also suggest using our new Responsive iframe option? It's a great way to include your calendar on your site since the height and width are set correctly automatically.

Why does a particular calendar view not work on my site (Wordpress, Blogger, etc)?

Additionally, if you are using a third-party service to host your site (aka, a "Sitebuilder" tool), these services also sometimes impose custom CSS rules or Javascript that can mess up what localendar is trying to do.

We hear this question asked most often in connection with the Dynamic Mini-Calendar. That's one of our most complicated view-styles and it relies on a lot of Javascript and CSS.

What's the solution? If the site if totally under your control, make sure you are following a few best practices. If you are using jQuery, make sure it's the latest version (otherwise, you might be clobbering the version localendar uses). If you have written some custom CSS, make sure you are not applying blanket styles across the board.

Bad CSS

.table {background:red;}

and then later...

<table>
<tr><td>This table has a red background!</td></tr>
</table>

Good CSS

.table redbg {background:red;}

and then later...

<table class="redbg">
<tr><td>This table has a red background!</td></tr>
</table>