Thread: Header banner
View Single Post
  #2  
Old 10-26-2008, 11:39 PM
  Victor D's Avatar 
Victor D Victor D is offline
 

X-Adept
  
Join Date: Aug 2008
Posts: 643
 

Default Re: Header banner

skin1/head.tpl
change width and height according to your image.
<img src="{$ImagesDir}/xlogo.gif" width="244" height="67" alt="" />

as you wish this logo to have width similar with the total page width
you need to change the table structure of the first table in this file
HTML Code:
<table cellpadding="0" cellspacing="0" width="100%"> <tr> <td class="HeadLogo"><a href="{$http_location}/"><img src="{$ImagesDir}/xlogo.gif" width="244" height="67" alt="" /></a></td> <td class="HeadRightBox"> {if $usertype eq "C"} {include file="customer/top_menu.tpl"} {/if} </td> </tr> </table>

to
HTML Code:
<table cellpadding="0" cellspacing="0" width="100%"> <tr> <td width="100%"><a href="{$http_location}/"><img src="{$ImagesDir}/xlogo.gif" width="244" height="67" alt="" /></a></td> </tr> {if $usertype eq "C"} <tr> <td class="HeadRightBox"> {include file="customer/top_menu.tpl"} </td> </tr> {/if} </table>
__________________
Regards,
Victor Dubiniuk

X-Cart Skins Store
- twenty two different skins for 4.1.x and 4.2.x;
- 4.3.x compatible versions are available;
- refresh you store now!

Smart menu X-Cart add-on for 4.1.8 - 4.3.x
Featured Products Slide Show X-Cart add-on for 4.1.8 - 4.3.x
Reply With Quote