In order to have Responsive Product Images, support told me over the phone to edit
Responsive CSS, line 653 (approx)
Change
<actinic:variable name="ProductImageMaxWidth" />px
to
100%
So it looks like this
.product-image > img, .std-product-details img {
min-width:1px;
width:auto !important;
max-width:100%;
height:auto;
margin-right:1em;
}
I did this and it works, large product images now shrink down with the screen size.
However there is a problem when using a small product image.
On shrinking the screen the smaller product images actually resize larger (and therefore blurry).
As you shrink the screen down you can see the images jumping from the correct size to oversize.
I presume this is because they are trying to fill the max width 100% of the table.
For example shrink the screen on this page and see how the product images jump from ok to oversize
.
Username: removed
Password: removed
http://www.arka.org.uk/acatalog/fake-flesh-plugs-tunnels-p1.html
Any clues on how I stop this happening?
Responsive CSS, line 653 (approx)
Change
<actinic:variable name="ProductImageMaxWidth" />px
to
100%
So it looks like this
.product-image > img, .std-product-details img {
min-width:1px;
width:auto !important;
max-width:100%;
height:auto;
margin-right:1em;
}
I did this and it works, large product images now shrink down with the screen size.
However there is a problem when using a small product image.
On shrinking the screen the smaller product images actually resize larger (and therefore blurry).
As you shrink the screen down you can see the images jumping from the correct size to oversize.
I presume this is because they are trying to fill the max width 100% of the table.
For example shrink the screen on this page and see how the product images jump from ok to oversize
.
Username: removed
Password: removed
http://www.arka.org.uk/acatalog/fake-flesh-plugs-tunnels-p1.html
Any clues on how I stop this happening?
Comment