I made a copy of the Vivid Dreams template and then customized that to suit my client. that was way back when and we've recently upgrade to 4.5.5.
Overall, the skin is working great - except for the cart page.
http://fruchile.com/cart.php
On the header of the page, there is a spot with a missing graphic - it's for the vivid dreams logo.
the code is:
Code:
<div id="header">
<div class="head-bg-checkout">
<div class="head-bg2-checkout">
<div class="phones">
<div class="clearing"/>
<div class="logo">
<a href="http://fruchile.com/home.php">
<img src="/skin/fruity_chile/images/vivid_dreams/logo_check.gif" alt=""/>
</a>
</div>
I found the tpl file for the cart
/fruity_chile/customer/main/cart.tpl
and edited the following code
Code:
<td class="image">
<a href="product.php?productid={$product.productid}">
{if $active_modules.On_Sale}
{include file="modules/On_Sale/on_sale_icon_cart.tpl" product=$product current_skin="vivid_dreams"}
{else}
{include file="product_thumbnail.tpl" productid=$product.display_imageid product=$product.product tmbn_url=$product.pimage_url type=$product.is_pimage image_x=$product.tmbn_x}
{/if}
</a>
{if $active_modules.Special_Offers ne "" and $product.have_offers}
{include file="modules/Special_Offers/customer/product_offer_thumb.tpl"}
{/if}
</td>
by changing "vivid_dreams" to "fruity_chile" -- and that did change the img src in the above code from vivid_dreams to fruity_chile as it is shown above - however, I do not know where to change the second vivid_dreams to fruity_chile. I have looked through all the skin files and they all reference fruity_chile, not sure where else this specific code is coming from.