View Single Post
  #28  
Old 01-19-2009, 05:48 PM
  JWait's Avatar 
JWait JWait is offline
 

X-Man
  
Join Date: Nov 2005
Location: California
Posts: 2,440
 

Default Re: Moving Search and Speedbar

You didn't post the complete code but I would guess that you put your code in before the ending </table>. This would make it part of the "search" table/form except it is on the next line. What happens if you put your code in a table after the final </form> in search.tpl, or better yet call top_menu.tpl (where it looks like your code came from) separately by putting...
</tr><tr>
<td class="HeadRightBox">
{if $usertype eq "C"}
{include file="customer/top_menu.tpl"}
{/if}
</td>
</tr>

under the part in head.tpl that has...
<td class="HeadLine" height="22">
{if $usertype eq "C"}
{ include file="customer/search.tpl" }
{/if}
</td>

and adding </tr><tr> to close the cell so that your "select language" area is below the speed bar.
(just an idea)
__________________
Two Separate X-Cart Stores
Version 4.4.4 Gold - X-AOM - Vivid Dreams Aquamarine (modified) - Linux
Mods - Newest Products - View All -, and a few others. Numerous upgrades from 4.0.x series.
Integrated with Stone Edge Order Manager + POS

Version 4.1.12 Gold (fresh install) - X-AOM - Linux
Mods - XCSEO free
Reply With Quote