First open templates>ja_lead>index.php and remove the following code
<?php
$siteName = $tmpTools->sitename();
if ($tmpTools->getParam('logoType')=='image') { ?>
<h1 class="logo">
<a href="index.php" title="<?php echo $siteName; ?>"><span><?php echo $siteName; ?></span></a>
</h1>
<?php } else {
$logoText = (trim($tmpTools->getParam('logoText'))=='') ? $config->sitename : $tmpTools->getParam('logoText');
$sloganText = (trim($tmpTools->getParam('sloganText'))=='') ? JText::_('SITE SLOGAN') : $tmpTools->getParam('sloganText'); ?>
<div class="logo-text">
<h1><a href="index.php" title="<?php echo $siteName; ?>"><span><?php echo $logoText; ?></span></a></h1>
<p class="site-slogan"><?php echo $sloganText;?></p>
</div>
<?php } ?>
Then open template.css and around line 947 change
#ja-mainnav {
background: none repeat scroll 0 0 #000000;
float: right;
margin: 40px 0 0;
width: 799px;
z-index: 9999;
}
to
#ja-mainnav {
background: none repeat scroll 0 0 #000000;
float: left;
margin: 40px 0 0;
width: 799px;
z-index: 9999;
}