I am using the Calendar (www.drupal.org/project/calendar) module but am seeing issues with the previous and next links when viewing a month.

I reported the issue a week back (http://drupal.org/node/989044) but no reply so until the issue is resolved I would like to remove the offending items.

Clicking the previous or next links causes the URl to be formed wrong, which can be seen here: (www.coghlancapital.com/calendar)

Can anyone point me in the right direction to do this?

Thanks,

Comments

paulcoghlan’s picture

Anyone??

I had hoped this would be a simple change to make...

WillHall’s picture

css
.date-next, .date-prev {display: none;}

paulcoghlan’s picture

Thanks a million. I assume this goes into the following file:

calendar_multiday\calendar_multiday.css

I did add it and cleared browser cache but no luck. Does this have to go into a specific place or replace other CSS code?

Thanks again,

Raf’s picture

Try using Firebug in Firefox to see which CSS-file is called, and whether or not the display: none is overwritten somewhere.

WillHall’s picture

I would place it in /sites/default/files/sky/custom.css

paulcoghlan’s picture

OK, solved it.

It seems the CSS originates NOT in Calendar but in the Date module.

I edited modules/date/date.css around line 100-110 and all is now well.

I added the following to both .date-prev and .date_next statements as was suggested above:

display: none;

Thanks for all your help. Firebug helped me locate the offending CSS.

Paul