<blockquote> Warning: Division by zero in /joomla_location/templates/ja_antares/index.php on line 40</blockquote>
If you are receiving a similar error message to that above, please follow these instructions to resolve the issue:
Open index.php in /templates/ja_antares/ and replace:
$ja_headerimg = $ja_header_images [getCurrentMenuIndex() % count($ja_header_images)];
on line 40 with:
if (count($ja_header_images)) $ja_headerimg = $ja_header_images [getCurrentMenuIndex() % count($ja_header_images)];
Please make sure you backup the file before editing.