[Solved] change logo link - Joomla! Forum - community, help and support
how can change logo clickable link home page?
ive looked @ index.php code not sure how change it!
ive looked @ index.php code not sure how change it!
code: select all
<div class="logoheader">
<h1 id="logo">
<?php if ($logo): ?>
<img src="<?php echo $this->baseurl ?>/<?php echo htmlspecialchars($logo); ?>" alt="<?php echo htmlspecialchars($templateparams->get('sitetitle'));?>" />
<?php endif;?>
<?php if (!$logo ): ?>
<?php echo htmlspecialchars($templateparams->get('sitetitle'));?>
<?php endif; ?>
<span class="header1">
<?php echo htmlspecialchars($templateparams->get('sitedescription'));?>
</span></h1>
</div>
try change following line of code shown:
before edit:
after edit:
note: make sure take copy of file before editing it.
before edit:
code: select all
<img src="<?php echo $this->baseurl ?>/<?php echo htmlspecialchars($logo); ?>" alt="<?php echo htmlspecialchars($templateparams->get('sitetitle'));?>" />after edit:
code: select all
<a href="<?php echo $this->baseurl ?>/"><img src="<?php echo $this->baseurl ?>/<?php echo htmlspecialchars($logo); ?>" alt="<?php echo htmlspecialchars($templateparams->get('sitetitle'));?>" /></a>note: make sure take copy of file before editing it.
Comments
Post a Comment