WP Breadcrumbs Minor error - Coder Assistance Required
I have a minor problem here with my 'crumbs, I've had a bit of a fiddle about on my own, but my alterations just keep breaking the theme, (Premium Style) so am seeking some expert advice from you guys over here.
Website name and the tagline in the header are on.
Site uses pages/sub-pages not categories and posts
The breadcrumbs work fine except this one thing...
I'll just illustrate the problem to put you in the picture.
The theme shows this breadcrumbs this way on any page...
Home »» The Page TitleWebsite Name
Which of course is not good and looks horrible
(In case anyone missed it or is tired, there is no space after the page title!)
So, my ideal solution would be to get rid of the of the website name entirely after the Page title.
Failing that the second prize would be to add a space after the Page Title (or before the site name)
Question is, How?
The theme has a breadcrumbs.php file which is below.
Any ideas please?
Thanks for your time

<!-- start breadcrumbs -->
<div id="breadcrumbs">
<?php if(function_exists('bcn_display')) { bcn_display(); }
else { ?>
<a href="<?php echo home_url(); ?>">
<?php _e('Home','gopiplustheme') ?>
</a>
<?php echo ('»» '); ?>
<?php if( is_tag() ) { ?>
<?php _e('Posts Tagged "','gopiplustheme') ?>
<?php single_tag_title(); echo('"'); ?>
<?php } elseif (is_day()) { ?>
<?php _e('Posts made in','gopiplustheme') ?>
<?php the_time('F jS, Y'); ?>
<?php } elseif (is_month()) { ?>
<?php _e('Posts made in','gopiplustheme') ?>
<?php the_time('F, Y'); ?>
<?php } elseif (is_year()) { ?>
<?php _e('Posts made in','gopiplustheme') ?>
<?php the_time('Y'); ?>
<?php } elseif (is_search()) { ?>
<?php _e('Search results for','gopiplustheme') ?>
<?php the_search_query() ?>
<?php } elseif (is_single()) { ?>
<?php $category = get_the_category();
if (!empty($category))
{
$catlink = get_category_link( $category[0]->cat_ID );
echo ('<a href="'.$catlink.'">'.$category[0]->cat_name.'</a> »» '.get_the_title());
};
?>
<?php } elseif (is_category()) { ?>
<?php single_cat_title(); ?>
<?php } elseif (is_author()) { ?>
<?php global $wp_query;
$curauth = $wp_query->get_queried_object(); ?>
<?php _e('Posts by ','gopiplustheme'); echo ' ',$curauth->nickname; ?>
<?php } elseif (is_page()) { ?>
<?php wp_title('') ?>
<?php }; ?>
<?php }; ?>
</div>
The 2nd Amendment, 1789 - The Original Homeland Security.
Gun control means never having to say, "I missed you."