Hi,
How change VM catalog list image size, I set in VirtueMart Configuration, but no change.
How can we solve this?
Any help is appreciated!
Kind regards,
Modest
Joomla! 3.2.7
VirtueMart 3.0.7.2
XAMPP V3.2.1
The image is constarined by css. Use Firebug to view the code & work out the overrides you need to make for your template. http://forum.virtuemart.net/index.php?topic=116620.0
Look for .browseProductImage style settings.
Hi jenkinhill,
I can't find any css control, I use Joomart Purity III template.
Thanks,
Modest
bit unrealistic to expect someone to dig thru your css..
provide a live direct url
Hi jenkinhill and GJC Web Design,
The problem has been solved.
in \components\com_virtuemart\assets\css\vm-ltr-site.css
.browseProductImage {max-height: 90px;width:auto;max-width: 100%;}
to
.browseProductImage {max-height: 200px;width:auto;max-width: 100%;}
Thank you,
Modest
NO. Make a css override or next week whn you update VirtueMart the edit will be lost. http://docs.virtuemart.net/tutorials/templating-layouts/106-override-vmsite-ltr-css.html
or just add it to an existing TEMPLATE css file with
.browseProductImage {max-height: 200px !important;width:auto !important;max-width: 100% !important;}