1. Is there away to take off the "(Event)" at the top of each event? It appears to be a filter for the type of content to show on the calendar. I am only using one type of content for the event calendar so to see event on the top if each item is kind of redundant & unneccessary.

2. Is there a way to make the table actually appear w/ even columns & rows? Do I need to limit descriptions & titles to a certain length?

Comments

yvelle’s picture

Copy the function theme_event_node_month() from events.theme to your .theme file. Then replace the word "theme" in the function named "theme_event_node_month($node)" with the name of your theme file. This will cause drupal to override the function in the event.theme file with the function in your .theme file.

Then all you will have to do is cut out the code that produces the "(event)" link. I think its line 178, though I think you can also take out the "if" loop surrounding it.

As for 2. Your best bet is to either set a static width for the cells and have overflow:hidden, or else try to do something with javascript to adjust the widths automatically.

preema’s picture

Please can you explain to me in detail.I want to display the event details with a common heading at the top of listing page.