What I think you want is to change the background-color ABOVE the search line, yes?
There is more than one way to accomplish this...
one way (perhaps the easiest way) is to define a new class for the first <tr>
FIND
Code:
<TABLE border="0" cellpadding="0" cellspacing="0" width="100%">
<TR>
<TD width="4"> </TD>
<TD><A href="{$http_location}"><IMG src="{$ImagesDir}/xlogo.gif" width="275" height="70" border="0"></A></TD>
<TD valign="top" align="right">
{if $usertype eq "C"}
{include file="customer/top_menu.tpl"}
{/if}
</TD></TR>
</TABLE>
REPLACE WITH
Code:
<TABLE border="0" cellpadding="0" cellspacing="0" width="100%">
<tr class="newheaderbackground">
<TD width="4"> </TD>
<TD><A href="{$http_location}"><IMG src="{$ImagesDir}/xlogo.gif" width="275" height="70" border="0"></A></TD>
<TD valign="top" align="right">
{if $usertype eq "C"}
{include file="customer/top_menu.tpl"}
{/if}
</TD></TR>
</TABLE>
THEN -- add a class to your CSS (it can go anywhere):
Code:
.newheaderbackground {
background-color: #ffffff;
}
(obviously replace ffffff with your intended background color)
This is CSS 101... if you're going to get deeper into xcart, you would benefit greatly by knowing some basic css and html. I encourage you to buy a book or read the many tutorials available on the net.
Good luck.