In "
X-Cart:Replacing X-Cart's Logo in the Ideal Responsive Skin" help article, I quote:
Quote:
If you look at the code of the template /skin/ideal_responsive/customer/head.tpl, you will see how the company logo image is implemented:
Code:
<div class="line1"> <div class="logo"> <a href="{$catalogs.customer}/home.php"><img id="main_logo" src="{$ImagesDir}/spacer.gif" alt="Logo Placeholder" /></a> </div>
|
Whereas, in xcart gold 4.6.4 downloaded pack, in
/skin/ideal_responsive/customer/head.tpl, the respective snippet is different:
Code:
<div class="line1">
<div class="logo">
<a href="{$catalogs.customer}/home.php"><img src="{$AltImagesDir}/custom/logo.png" alt="{$config.Company.company_name}" /></a>
</div>
Has the technique changed for 4.6.4 version, ie instead of using css background property of the .logo class, as recommended in Help, point to the actual logo file? Will this keep the responsiveness regarding the logo?