- Copy the file modules/mod_jevents_legend/tmpl/YOURJEVENTSLAYOUT/legend.php to templates/YOURTEMPLATE/html/mod_jevents_legend/YOURJEVENTSLAYOUT/legend.php
- Edit this copied file and find the displayCalendarLegend method
- In this method you should see code like this:
$allcats = new catLegend("0", JText::_('JEV_LEGEND_ALL_CATEGORIES'), "#d3d3d3", JText::_('JEV_LEGEND_ALL_CATEGORIES_DESC'));
- And a couple of lines beneath this
array_push($allrows, $allcats);
- replace this with
array_unshift($allrows, $allcats);