How can i change the template to show 3 products in the category page in grid mode?
and modify the image size in the product page?, i want it largest
how can change the width of the right column?
i have a problem, the layered navigation don
7 answers
How can i change the template to show 3 products in the category page in grid mode?
and modify the image size in the product page?, i want it largest
how can change the width of the right column?
i have a problem, the layered navigation don
How can i change the template to show 3 products in the category page in grid mode?
=> Go to File app\design\frontend\default\jm_adamite\layout\cata log.xml
Replace the numbers between the <count> tag
Code:
<action method="setColumnCount"><count>2</count></action>
You may find this twice in this file. Please do the changes in both.
————————————————————————--
Do you want to increase the size of the product image in this Url http://beta.siglosgourmet.com/vino/v…anza-2007.html ?
how can change the width of the right column?
Change the Following CSS Code in this File http://beta.siglosgourmet.com/skin/f…css/layout.css
Code:
#ja-right { float: right; width: 300px; }
Please reduce the 300px to what you actually needed and get it updated in the layout.css
For Example:
Code:
#ja-right { float: right; width: 200px; }
Note: When you reduce this. you can see this width decrease on all the page, where you have the right column.
Do you want to increase the size of the product image in this Url http://beta.siglosgourmet.com/vino/v…anza-2007.html ?
Yes in the product page.
Thanks you very much for all!!
How can i change the template to show 3 products in the category page in grid mode?
=> Go to File app\design\frontend\default\jm_adamite\layout\cata log.xml
Replace the numbers between the <count> tag
Code:
<action method="setColumnCount"><count>2</count></action>You may find this twice in this file. Please do the changes in both.
————————————————————————--
When i replace the numbers to 3, the grid don’t show 3, shows only 1. I think tha i change too something in CSS, but i don’t know what….
OK I CHANGE THIS IN CSS AND WORKS
.products-grid li.item {
padding: 0;
float: left;
width: 32%;
padding: 0 1%;
}
But i the image doesn’t resize…. http://beta.siglosgourmet.com/vino/vino-tinto.html?mode=grid
I need know how to resize the image here:
http://beta.siglosgourmet.com/vino/v…anza-2007.html
and here:
http://beta.siglosgourmet.com/vino/v…html?mode=grid
thanks
I need know how to resize the image here:
http://beta.siglosgourmet.com/vino/v…anza-2007.html
and here:
http://beta.siglosgourmet.com/vino/v…html?mode=grid
thanks
Go to this File : app\design\frontend\default\jm_adamitetemplate\ca talog\product\view\media.phtml
Find the below code
Code:
$_image->getFile())->resize(56, 76);
replace it with any width and height
For Ex:
Code:
$_image->getFile())->resize(250,300);
Hope this would help you