Hi,
How do I change the img alt:
<img alt="Our customer service is available 24/7. Call us at (084) 912-939-475." src="http://www.fabricfantasie.co.uk/skin/frontend/default/jm_celas/images/media/col_right_callout.jpg">">">
Regards,
Mike
1 answer
Hi there,
Please open up this file: \app\design\frontend\default\jm_celas\layout\catal og.xml ( jm_celas here is your default theme’s name)
At around line 64, there should be a snippet of code like this:
PHP Code:
<reference name="right">
<block type="core/template" name="right.permanent.callout" template="callouts/right_col.phtml">
<action method="setImgSrc"><src>images/media/col_right_callout.jpg</src></action> // you can change image here.
<action method="setImgAlt" translate="alt" module="catalog"><alt>Our customer service is available 24/7. Call us at (084) 912-939-475.</alt></action>
<action method="setLinkUrl"><url>checkout/cart</url></action>
</block>
</reference>
And flush all magento cache.
Hope this helps