I'm not sure really, but check on a few things to make sure they're correct:
Make sure you uploaded the Gif image to the right directory: <x-cart dir>/skin1/images. Make sure it's not in the images folder in the main X-Cart directory. That's for product and category images.
Make sure your SSLLogo.tpl is in the <x-cart dir>/skin1 directory. That means it should show up in the main templates directory when you first go into "Edit Templates" in the Admin area.
Make sure you call the image properly in your SSL template:
Quote:
|
[img]{$ImagesDir}/SSLLogo.gif[/img]
|
The $ImagesDir variable refers to <x-cart dir>/skin1/images.
If you're placing your SSL template below the authbox template, make sure it's below the "{/if}" tag. Otherwise, your template is within the if statement that goes with the authbox template and will be affected by that.
Quote:
{if $login eq "" }
{include file="auth.tpl" }
{else}
{include file="authbox.tpl" }
{/if}
|
Also, make sure you placed your include SSL template in the home.tpl file in the customer directory. Make sure it's not in the home_main.tpl file.
If all those things are correctly set up, then I can't imagine what the problem could be. If you're still having problems, try posting the full code of the SSL template you made and a section of the code of the home.tpl file around where you're including your SSL template. Good luck.
Jill