ProductImage Main Image Click
Posted: Thu Mar 21, 2013 6:36 pm
I have installed CrazyEgg heat mapping on our new Gold website, and I have been surprised how many people try to click on the main image to make it larger, even though I clearly have written beside the thumbnails to click on the thumbnails for a larger view. I've always known our customers won't read anything. Anyway, I think I need to give the customers what they want and allow them to click on the large image. Does anyone know how I would modify this part of ProductImage.ascx to get it to work like the thumbnails?
I can't quite follow the thumbnail example to figure out how I would implement it above. Thanks!
Code: Select all
<div class="mainImageArea" >
<div class="mainImageWrapper">
<div class="mainImage">
<asp:Image ID="ProductImage" runat="server" BorderWidth="0" CssClass="productImage" ClientIDMode="Static" />
<asp:Image ID="NoIcon" runat="server" SkinID="NoIcon" Visible="false" EnableViewState="false" CssClass="productImage"/>
<asp:Image ID="NoThumbnail" runat="server" SkinID="NoThumbnail" Visible="false" EnableViewState="false" CssClass="productImage"/>
<asp:Image ID="NoImage" runat="server" Width="300" Height="300" SkinID="NoImage" Visible="false" EnableViewState="false" CssClass="productImage"/>
</div>
</div>
</div>
I can't quite follow the thumbnail example to figure out how I would implement it above. Thanks!