Hi,
Try the following:
1. replace the images in the calendar file with text values like this:
- Code: Select all
<div id="cal_prev" title="'.$lang["prev_X_months"].'"><span class="cal_button">back</span></div>
<div id="cal_next" title="'.$lang["next_X_months"].'"><span class="cal_button">next</span></div>
Then, in the JavaScript file change this line (49) at the start of the calendar navegation function:
- Code: Select all
$$('#cal_controls img').each(function(img) {
to this:
- Code: Select all
$$('#cal_controls .cal_button').each(function(img) {
Finally commento out or remove the following lines slightly lower down (they just replace the image with the mouseover image):
- Code: Select all
var extension = src.substring(src.lastIndexOf('.'),src.length)
img.addEvent('mouseenter', function() { img.setProperty('src',src.replace(extension,'_over' + extension)); });
img.addEvent('mouseleave', function() { img.setProperty('src',src); });
That should be all you need to do.
Let me know how it goes or if you have any problems.
Chris