I've sorted out logo issue thanks to the advice posted in another thread on this forum:
Dear Aminc,
Please open file yt_template.php in folder (plugins\system\yt\includes\site\lib), find this code:
<a href="index.php" title="<?php echo $app->getCfg('sitename'); ?>">
<img alt="<?php echo $app->getCfg('sitename'); ?>" src="<?php echo $url; ?>"/>
</a>
change to :
<h1 class="logo">
<a href="index.php" title="<?php echo $app->getCfg('sitename'); ?>">
<img alt="<?php echo $app->getCfg('sitename'); ?>" src="<?php echo $url; ?>"/>
</a>
</h1>
Thanks!