Showing thumbnail images for categories in left nav
Posted: Mon Dec 22, 2008 11:45 am
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
and make it look like
Now from the admin side adjust your category Thumbnails and left nav will show images instead of text.
Code: Select all
<li><asp:HyperLink ID="CategoryLink" runat="server" Text='<%#Eval("Name")%>' NavigateUrl='<%#Eval("NavigateUrl")%>'></asp:HyperLink></li>
Code: Select all
<li><asp:HyperLink ID="CategoryLink" runat="server" ImageUrl='<%#Eval("ThumbnailUrl")%>' NavigateUrl='<%#Eval("NavigateUrl")%>'></asp:HyperLink></li>