Currently on our homepage the images that are on show are the same size as the images within the product section. Although trying to use the thumbnail option doesnt seem able to use a smaller picture......any ideas appreciated??
Announcement
Collapse
No announcement yet.
Re sizing Images
Collapse
X
-
Do you mean in the best sellers / new arrivals list?
You can either add to the<img> tag :
width="75"
to make it 75px wide ... not great at it physically crushes the image to size and the quality may suffer ... plus you still suffer from having to download the larger image file
or you can use the product thumbnail image :
replace ProductImageFileName" in the <img src=""> with
<actinic:variable name="ProductThumbnailImageFileName" />
The 2 layouts to edit are typically:
New Mini Products Items
Mini Best Seller Layout
HTH
-
Hi,
Yes with the best sellers section, im guessing this is controlled via our dreamweaver set up, is there away via that to control sizes of images and what information is visible on best seller section.
Using different size images in the thumbnail section of the product doesnt seem to alter the image in the best seller section.
Comment
-
The best sellers layout will be edited within Actinic - either under the design tab or in the library.
Did you do this from my previous post:
replace ProductImageFileName" in the <img src=""> with
<actinic:variable name="ProductThumbnailImageFileName" />
... that will then pick up the thumbnail image rather than the main image.
If you have a width="" declared in the <img> tag it will always resize to this whether the actual jpeg is bigger or smaller
Comment
Comment