Delete less-than sign?

Ecommerce design Joomla template to start your online business with VirtueMart and additional eshop features.
GK User
Fri Sep 21, 2012 12:49 pm
After I added a module position near the cart module position, a less than a sign is appearing from nowhere..
Somebody knows how to delete this sign?
To add the position succesfully (apart from the less than a sign) position ive edited this files: gk.stuff.css , template.css , logo.php
User avatar
Senior Boarder

Konrad M
Fri Sep 21, 2012 1:10 pm
Hi,
can you give us url to your site ?
User avatar

Konrad M
Fri Sep 21, 2012 1:40 pm
Please check logo.php file. Probably you have '<' somewhere. Or send me your logo.php code.
User avatar

GK User
Mon Sep 24, 2012 9:22 am
I cant find it?
Thanks for the help


Code: Select all
<?php

// Here you can modify the navigation of the website

// No direct access.
defined('_JEXEC') or die;

$logo_image = $this->getParam('logo_image', '');

if(($logo_image == '') || ($this->getParam('logo_type', '') == 'css')) {
     $logo_image = $this->URLtemplate() . '/images/logo.png';
} else {
     $logo_image = $this->URLbase() . $logo_image;
}

$logo_text = $this->getParam('logo_text', '');
$logo_slogan = $this->getParam('logo_slogan', '');
//
$user = JFactory::getUser();
$userID = $user->get('id');
$btn_login_text = ($userID == 0) ? JText::_('GK_YOURSHOP_LOGIN') : JText::_('GK_YOURSHOP_ACCOUNT');

?>

<div id="gkPageTop" class="gkMain <?php echo $this->generatePadding('gkPageTop'); ?>">
<?php if ($this->getParam('logo_type', 'image')!=='none'): ?>
     <?php if($this->getParam('logo_type', 'image') == 'css') : ?>
     <h1 id="gkLogo">
          <a href="./" class="cssLogo"></a>
          <span><?php echo $this->getParam('logo_text', ''); ?></span>
     </h1>
     <?php elseif($this->getParam('logo_type', 'image')=='text') : ?>
     <h1 id="gkLogo" class="text">
         <a href="./">
              <span><?php echo $this->getParam('logo_text', ''); ?></span>
               <small class="gkLogoSlogan"><?php echo $this->getParam('logo_slogan', ''); ?></small>
         </a>
     </h1>
    <?php elseif($this->getParam('logo_type', 'image')=='image') : ?>
    <h1 id="gkLogo">
          <a href="./">
          <img src="<?php echo $logo_image; ?>" alt="<?php echo $this->getPageName(); ?>" />
          </a>
     </h1>
     <?php endif; ?>
    <?php endif; ?>
<?php if($this->modules('top_search1')) : ?>
<div id="top_search1">
<jdoc:include type="modules" name="top_search1" style="none" />
</div>
<?php endif; ?>
   <?php if($this->modules('top_search')) : ?>
<div id="top_search">
<jdoc:include type="modules" name="top_search" style="none" />
</div>
<?php endif; ?>
<<?php if($this->modules('top_search_left')) : ?>
<div id="top_search_left">
<jdoc:include type="modules" name="top_search_left" style="none" />
</div>
<?php endif; ?>
User avatar
Senior Boarder

Konrad M
Mon Sep 24, 2012 9:30 am
Line 57. Find
Code: Select all
<<?php if($this->modules('top_search_left')) : ?>

and change it to:
Code: Select all
<?php if($this->modules('top_search_left')) : ?>

Problem should be fixed after this change.
User avatar

GK User
Mon Sep 24, 2012 9:36 am
Wow you are fast!
Thanks.
User avatar
Senior Boarder


cron