Page 1 of 1

Showing thumbnail images for categories in left nav

Posted: Mon Dec 22, 2008 11:45 am
by mazhar
If you want to show the category images instead of text as links in the left navigation then you need to edit the ConLib/SimpleCategoryList.ascx file and locate the following line of code

Code: Select all

<li><asp:HyperLink ID="CategoryLink" runat="server"  Text='<%#Eval("Name")%>' NavigateUrl='<%#Eval("NavigateUrl")%>'></asp:HyperLink></li>
and make it look like

Code: Select all

<li><asp:HyperLink ID="CategoryLink" runat="server" ImageUrl='<%#Eval("ThumbnailUrl")%>' NavigateUrl='<%#Eval("NavigateUrl")%>'></asp:HyperLink></li>
Now from the admin side adjust your category Thumbnails and left nav will show images instead of text.