Yeah....I've looked at the "home.tpl" file as well. Call me blind, because I do not see any <br /> tags or "spacer.gif" between any of those active menu boxes on the left and right. With the except of between the "Visa/Mastercard" logo and "Help" box, I only see one <br /> tag there. And that is it.
Well...here is my entire "home.tpl" file. Hopefully it's just me being blind!
Code:
{* $Id: home.tpl,v 1.88.2.3 2006/07/19 10:19:35 max Exp $ *}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
{if $printable ne ''}
{include file="customer/home_printable.tpl"}
{else}
{config_load file="$skin_config"}
<html>
<head>
<title>
{if $config.SEO.page_title_format eq "A"}
{section name=position loop=$location}
{$location[position].0|strip_tags|escape}
{if not %position.last%} :: {/if}
{/section}
{else}
{section name=position loop=$location step=-1}
{$location[position].0|strip_tags|escape}
{if not %position.last%} :: {/if}
{/section}
{/if}
</title>
{include file="meta.tpl" }
<link rel="stylesheet" href="{$SkinDir}/{#CSSFile#}" />
<link rel="stylesheet" href="{$SkinDir}/tabs/tabs.css" />
<link rel="stylesheet" href="{$SkinDir}/speedbar/speedbar.css">
</head>
<body{$reading_direction_tag}{if $body_onload ne ''} onload="javascript: {$body_onload}"{/if}>
{include file="rectangle_top.tpl" }
{include file="head.tpl" }
{if $active_modules.SnS_connector}
{include file="modules/SnS_connector/header.tpl"}
{/if}
<!-- main area -->
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="VertMenuLeftColumn">
{if $active_modules.SnS_connector && $config.SnS_connector.sns_display_button eq 'Y'}
{include file="modules/SnS_connector/button.tpl"}
{/if}
{if $categories ne "" and ($active_modules.Fancy_Categories ne "" or $config.General.root_categories eq "Y" or $subcategories ne "")}
{include file="customer/categories.tpl" }
{/if}
{include file="customer/special.tpl"}
{if $active_modules.Bestsellers ne "" and $config.Bestsellers.bestsellers_menu eq "Y"}
{include file="modules/Bestsellers/bestsellers.tpl" }
{/if}
{*{if $login eq "" }
{ include file="auth.tpl" }
{/if}
{ include file="customer/menu_cart.tpl" }
{include file="customer/special.tpl"}*}
{if $active_modules.Surveys && $menu_surveys}
{foreach from=$menu_surveys item=menu_survey}
{include file="modules/Surveys/menu_survey.tpl"}
{/foreach}
{/if}
</td>
<td valign="top" width="2"></td>
<td valign="top">
<!-- central space -->
{include file="dialog_message.tpl"}
{*
{if $active_modules.Special_Offers ne ""}
{include file="modules/Special_Offers/customer/new_offers_message.tpl"}
{/if}
*}
{include file="customer/home_main.tpl"}
<!-- /central space -->
</td>
<td width="2"></td>
<td class="VertMenuRightColumn">
{if $active_modules.SnS_connector && $config.SnS_connector.sns_display_button eq 'Y' && $sns_collector_path_url ne ''}
{include file="modules/SnS_connector/button.tpl"}
<br />
{/if}
{if $active_modules.Feature_Comparison ne "" && $comparison_products ne ''}
{include file="modules/Feature_Comparison/product_list.tpl" }
<br />
{/if}
{include file="customer/menu_cart.tpl" }
{if $login eq "" }
{include file="auth.tpl" }
{else}
{include file="authbox.tpl" }
{/if}
{include file="news.tpl" }
{include file="help.tpl" }
<br />
<div align="center">
<img src="{$ImagesDir}/visamcdispaypal.gif">
</div>
</td>
</tr>
</table>
{include file="rectangle_bottom.tpl" }
</body>
</html>
{/if}