Salve a tutti,
sto cercando di rendere l'header di un sito cliccabile ma non riesco a venirne a capo.
Il template usato è ja_purity, l'immagine che vorrei rendere cliccabile è quella nel "ja-header".
Vi sarei grato se mi poteste dire dove e come intervenire, il sito è in ancora in locale.
Grazie!
Vi allego il codice:
<!-- BEGIN: HEADER -->
<div id="ja-header" class="clearfix" style="background: url(
http://127.0.0.1/joomla/templates/ja_purity/images/header/header.jpg) no-repeat center; margin-top: 40px;">
<div class="ja-headermask"> <>
<?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>[/url]
</h1>
<?php else:
$logoText = (trim($tmpTools->getParam('logoText'))=='') ? $config->sitename : $tmpTools->getParam('logoText');
$sloganText = (trim($tmpTools->getParam('sloganText'))=='') ? JText::_('SITE SLOGAN') : $tmpTools->getParam('sloganText'); ?>
<h1 class="logo-text">
<a href="index.php" title="<?php echo $siteName; ?>"><span><?php echo $logoText; ?></span>[/url]
</h1>
<p class="site-slogan"><?php echo $sloganText;?></p>
<?php endif; ?>
<?php $tmpTools->genToolMenu(JA_TOOL_FONT, 'png'); ?>
<?php if($this->countModules('user4')) : ?>
<div id="ja-search">
<jdoc:include type="modules" name="user4" />
<>
<?php endif; ?>
<>
<>
<!-- END: HEADER -->