Howdy Dale,
This looks it’s actually a problem with your theme. I bet your theme has something like this inside of it:
<?php wp_title('»', true, 'right'); ?>
when it should be:
<?php wp_title('»', true, 'left'); ?>
The difference is that it should left, not right. I bet though you have an SEO plugin, or something else that helps you change the titles of your pages. And it is not running on the /events/ pages because it doesn’t support custom post type archives. And that is why you are only seeing this problem on the events pages.
Does that all make sense? Does that give you enough information to correct your theme? Was that the problem?
Please let me know. Cheers!
– Brook