Hi G
Also try replacing the following in your templates styles.php {../templates/j51_presence/php/styles.php)..
/*--Set Logo Image position and locate logo image file--*/
h1.logo a {left:<?php echo ($logo_x); ?>px}
h1.logo a {top:<?php echo ($logo_y); ?>px}
<?php if($this->params->get('logoimagefile') == '') : ?>
h1.logo a {background: url(<?php echo $defaultlogoimage; ?> no-repeat; z-index:1;}
<?php elseif($this->params->get('logoimagefile') != '') : ?>
h1.logo a {background: url(<?php echo $this->baseurl ?>/<?php echo $logoimagefile; ?> no-repeat; z-index:1;}
<?php endif; ?>
/*--End Set Logo Image position and locate logo image file--*/
With..
/*--Set Logo Image position and locate logo image file--*/
div.logo a {left:<?php echo ($logo_x); ?>px}
div.logo a {top:<?php echo ($logo_y); ?>px}
<?php if($this->params->get('logoimagefile') == '') : ?>
div.logo a {background: url(<?php echo $defaultlogoimage; ?> no-repeat; z-index:1;}
<?php elseif($this->params->get('logoimagefile') != '') : ?>
div.logo a {background: url(<?php echo $this->baseurl ?>/<?php echo $logoimagefile; ?> no-repeat; z-index:1;}
<?php endif; ?>
/*--End Set Logo Image position and locate logo image file--*/
Failing that may I suggest sending template FTP access to your Joomla installations template folder to info@joomla51.com and we will make the changes for you.
Ciarán