How do I add an image to the left column on the homepage?
Regards, Fiona
How do I add an image to the left column on the homepage?
Regards, Fiona
Go to the magento admin site, choose System->Configuration->Advanced->Developer and turn on template tag hints. (Make sure your store name is selected in the Current Configuration Scope dropdown)
You can then go back to your store homepage and you will be able to see which template is used for the left column.
Modify the .phtml template file and add your image there.
There's a simpler way of doing this:
<reference name="left"> <block type="core/template" name="unique.id" template="callouts/left_col.phtml"> <action method="setImgSrc"><src>imageUrl</src></action> <action method="setImgAlt" translate="alt" module="catalog"><alt>alternative text</alt></action> </block> </reference>
6. in the xml field change "imageUrl" to the address of your image, "alternative text" to the alternative description and unique.id to a unique id like advertisement.banner.left.
editing the cms home page worked for the inside of the main window landing page, how would one add images to the outside space that some people never see in their browsers?