I'm running the following:
Virtuemart 2.0.10
Joomla 2.5.7
On the product page it's pulling up what seems like a thumbnail image that was generated when I upload. How can I change which file it's calling out, and make it bigger?
http://www.gldgames.com/index.php/table-games/pockey-tables/3-in-1-flip-gametable-detail
Your help would be much appreciated.
Hello,
You are using wide images and your commercial template is adjusted for "square", so you could change the width of the on the left and right column.
Inside your vm.css file (will located normally under your_joomla_folder/templates/gk_mystore/css/vm.css around line 172 on the property .productdetails-view .lcolumn change the width to 30%, something like
.productdetails-view .lcolumn {
.
.
.
width:30%;
}
and also change the right column so your template not be breaked, around line 182, proerty .productdetails-view .rcolumn
.productdetails-view .rcolumn {
.
.
.
width:61%;
}
also you could override the propertie .main-image img.product-image and change the autosize of your thumbnails ....
but you should start using firebug to help you study your css styling and code: http://forum.virtuemart.net/index.php?topic=102850.0
Last take a look on that post about commercial templates: http://forum.virtuemart.net/index.php?topic=108212.0
Regards