|
1st question
On your home page can yo tell me how you got the product images to look like that
eg {{block type="catalog/product_list" category_id="7"}}
second question
can you tell me how you move the footer links like about us | Faq | sitemap to the left column
Hi Bill
With regard the homepage section I made that page in CMS admin->cms->home.
and your second section sorry i didn’t catch that. if you want to move the footer page in the left column you should edit the: template->page and select the layout you want for example 2columns-left.phtml then try to cut the codes:
<div class="footer-container"> <div class="footer"> <?=$this->getChildHtml('footer')?> </div> </div>
and paste it in the col-left side-col :
<div class="col-left side-col"> <?=$this->getChildHtml('left')?>
<div class="footer"> <?=$this->getChildHtml('footer')?> </div> </div>
the code should look like this.
i hope this suggestion is my clear you up.
sorry for delayed reply.
|