You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.
Where can you adjust the image sizes for category, product detail. I used to be adjustable in Admin.
Offline
There are no adjustments. All images are scaled in the HTML output according to the container they are displayed within, or a percentage of the width of that container. So, if you want to change image widths (don't do heights - this is a responsive platform), do so in CSS by writing a rule targeting the appropriate container and it's image.
For example, to make the product image shown in product listings 50% wide and center it, add the following to the bottom of your skin's all.css file:
.kprodlistitemimage img {width: 50% !important; margin: 0 auto 0 auto !important;}
Offline
Thank you. That is good for the product category but not the product detail image. Do you have a code for that as well?
Offline
Thank you Nick. Where can I find these developer tools?
Offline
This is for Chrome, most other browsers have something similar:
https://developer.chrome.com/devtools
Offline