1. ponzano
  2. Commercial Templates
  3. Saturday, 03 May 2014
  4.  Subscribe via email
Hello,
what have I to modify in order to show the logo image and the text on my site? I'm using Letterpress template but if I set Text it shows it but not the image and viceversa...
Thanks
Accepted Answer Pending Moderation
0
Votes
Undo
Hello

This would differ slightly depending on the version of template you are using as the HTML displaying the logo has changed recently. May I suggest sending temporary administration access to your Joomla installation to info@joomla51.com and we will make the amendments for you. For our reference please paste a link to this post in your email.

Ciarán
  1. more than a month ago
  2. Commercial Templates
  3. # 1
Accepted Answer Pending Moderation
0
Votes
Undo
Thank you

Both your logo text and logo image should be now displayed.

We added the following to your CSS..


h1.logo-text {
left: 160px;
position: absolute;
top: 5px;
}


And replaced the following in your templates ../php/layouts/header.php


<div id="logo">
<div class="logo_container">
<?php if($this->params->get('logoImage') == '1') : ?>
<h1 class="logo"> <a href="/index.php" title="<?php echo $siteName; ?>"><span>
<?php echo $siteName; ?>
</span></a> </h1>
<?php else : ?>

<h1 class="logo-text"> <a href="/index.php" title="<?php echo $this->params->get('siteName'); ?>"><span>
<?php echo $this->params->get('logoText'); ?>
</span></a> </h1>
<p class="site-slogan"><?php echo $this->params->get('sloganText'); ?></p>
<?php endif; ?>
</div>
</div>


With....



<div id="logo">
<div class="logo_container">
<?php if($this->params->get('logoImage') == '1') : ?>
<h1 class="logo"> <a href="/index.php" title="<?php echo $siteName; ?>"><span>
<?php echo $siteName; ?>
</span></a> </h1>
<?php endif; ?>

<h1 class="logo-text"> <a href="/index.php" title="<?php echo $this->params->get('siteName'); ?>"><span>
<?php echo $this->params->get('logoText'); ?>
</span></a> </h1>
<p class="site-slogan"><?php echo $this->params->get('sloganText'); ?></p>
</div>
</div>


Ciarán
  1. more than a month ago
  2. Commercial Templates
  3. # 2
  • Page :
  • 1


There are no replies made for this post yet.
Be one of the first to reply to this post!