Quote:
Originally Posted by balinor
Check head.tpl to make sure you didn't duplicate the 'headline'. It is a table with three rows, one with the class 'headline'.
The 'extra' store name is actually the navigation bar (you will notice it changes as you move through the site). If you want it gone, remove or comment out this line from home.tpl:
Code:
{include file="location.tpl"}
[/code]
|
Thank you very much balinor. I removed the 'headline' and it still left some of the line. I have pasted my head.tpl below. Removing the 'location.tpl' worked like a champ!! I REALLY appricate your help!!!!
Thanks!!
https://secure.cydrate.com/store/home.php
{* $Id: head.tpl,v 1.40.2.2 2004/08/18 12:51:16 max Exp $ *}
<center><TABLE border="0" cellpadding="0" cellspacing="0" width="800">
<TR>
<TD valign="top" align="right">
{if $usertype eq "C"}
{include file="customer/top_menu.tpl"}
{/if}
</TD></TR>
</TABLE>
<TABLE border="0" cellpadding="0" cellspacing="0" width="800">
<TR>
<TD>
<FORM action="home.php" method="GET" name="sl_form">
<INPUT type="hidden" name="redirect" value="{$smarty.server.PHP_SELF}?{$smarty.server.Q UERY_STRING}">
</TD>
</TR>
<TR>
{if $usertype eq "C"}
{/if}
</TD>
{if ($usertype eq "C" || $usertype eq "B")and $all_languages_cnt gt 1}
<TABLE border="0" cellpadding="0" cellspacing="0">
<TR>
<TD>
{$lng.lbl_select_language}:
<SELECT name="sl" onChange="javascript
: document.sl_form.submit()">
{section name=ai loop=$all_languages}
<OPTION value="{$all_languages[ai].code}"{if $store_language eq $all_languages[ai].code} selected{/if}>{$all_languages[ai].language}</OPTION>
{/section}
</SELECT>
</TD></TR>
</FORM>
</TABLE>
{else}
{/if}
</TD>
</TR>
<TR>
<TD colspan="2" class="VertMenuBorder">[img]{$ImagesDir}/spacer.gif[/img]</TD>
</TR>
{******** Remove this line to display how much products there are online ****
<TR>
<TD colspan="2" class="NumberOfArticles" align="right">{insert name="productsonline"} {$lng.lbl_products} {if $config.Appearance.show_in_stock eq "Y"}{$lng.lbl_and} {insert name="itemsonline"} {$lng.lbl_items} {/if}{$lng.lbl_online}</TD>
</TR>
**** Remove this line to display how much products there are online ********}
<TR>
<TD colspan="2" valign="middle" height="32">
<TABLE cellspacing="0" cellpadding="0" border="0" width="800" height="18">
<TR>
<TD>[img]{$ImagesDir}/spacer.gif[/img]</TD>
{if (($main eq 'catalog' && $cat ne '') || $main eq 'product') && $config.Appearance.enabled_printable_version eq 'Y'}
<TD width="800" valign="middle" align="right">{include file="printable.tpl"}</TD>
<TD>[img]{$ImagesDir}/spacer.gif[/img]</TD>
{/if}
</TR>
</TABLE>
</TD>
</TR>
</TABLE>
</center>[/url]