<em>@vedics 120318 wrote:</em><blockquote>How do I remove the JA Opal logo? I don’t want any logo to be displayed in my site. If I remove the logo.png file, i still see a text (my site name) written at the top of the template?
Please help</blockquote>
Edit your templates html from the back end of joomla.
Look for 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">
<p class="site-slogan"><?php echo $sloganText;?></p>
<h1>
<a href="index.php" title="<?php echo $siteName; ?>"><span><?php echo $logoText; ?></span></a>
</h1>
</div>
<?php } ?>
And either comment it out or remove it. (make a backup first)