X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   Space at the bottom of all default menus (https://forum.x-cart.com/showthread.php?t=6625)

personalplaythings.com 03-08-2004 06:04 AM

Space at the bottom of all default menus
 
Hello,

I am having a bit of a problem removing the space at the bottom of the default menus. I have tried several things, but am unable to remove them. Can anyone help?

Thank you,

Tracy McClarnon

shan 03-08-2004 06:35 AM

sounds like you need to remove the
tags from the bottom of each menu file or in the home.tpl file

personalplaythings.com 03-08-2004 06:40 AM

Thank you for the suggestions, but...

I don't see any
s at the end of the .tpl files that would cause this. If you look at the default installations of x-cart, you will see this space. I am at a lose.

personalplaythings.com 03-08-2004 07:50 AM

Here is the code that is giving me problems:

Code:

{* $Id: news.tpl,v 1.14 2003/08/13 06:49:07 svowl Exp $ *}
{capture name=menu}
<FONT  class=VertMenuItems>
<span style="font-size: 9px">
{include file="today_news.tpl"}
</span>
<FONT  class=TheNews>{$lng.txt_subscribe_monthly}</FONT>

<form action="{$xcart_web_dir}/mail/subscribe.php" method=get name=subscribeform>
<input type="text" name="email" size=27>

{include file="buttons/subscribe_menu.tpl"}
<input  name=redirect type=hidden value="{$redirect}">
</form>
</FONT>
{/capture}
{ include file="newsletter_menu.tpl" menu_title=$lng.lbl_news menu_content=$smarty.capture.menu }


shan 03-08-2004 08:04 AM

try this instead, the problem is the because of the <form> tag. if you wrap it in a table it lays out better

Code:

{* $Id: news.tpl,v 1.14 2003/08/13 06:49:07 svowl Exp $ *}
{capture name=menu}
<FONT  class=VertMenuItems>
<span style="font-size: 9px">
{include file="today_news.tpl"}
</span>
<FONT  class=TheNews>{$lng.txt_subscribe_monthly}</FONT>
 <table width="100%"  border="0" cellspacing="0" cellpadding="0">
  <tr><form action="{$xcart_web_dir}/mail/subscribe.php" method=get name=subscribeform>
    <td>
<input type="text" name="email" size=27>
 
{include file="buttons/subscribe_menu.tpl"}
<input  name=redirect type=hidden value="{$redirect}">
 </td></form>
  </tr>
</table>


</FONT>
{/capture}
{ include file="newsletter_menu.tpl" menu_title=$lng.lbl_news menu_content=$smarty.capture.menu }


personalplaythings.com 03-08-2004 08:41 AM

That worked! Thank you


All times are GMT -8. The time now is 02:38 PM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.