Hi, I have been looking around to see if others have experienced my problem or posted about it, but no dice.
The situation: When using the DC Admin tool to add a product category, I add the category name, image, and description. Easy peasy.
The problem: When viewing the main category page, the description does not show up as regular text on the page - It only shows when I mouseover the category name (which is also a hyperlink)
I've started with catalog.aspx and isolated the section of code that produces the category name at the top of the page, but am having trouble working my way backward from there to see where I can print the description as part of the regular text in that table instead of the title of a <td>.(See browser source code below for example):
<tr>
<td onmouseover="Menu_HoverStatic(this)" onmouseout="Menu_Unhover(this)"
onkeyup="Menu_Key(event)" title="This is my description." id="ctl00_ContentPlaceHolder1_categoryCrumbsn0">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tbody><tr>
<td style="white-space: nowrap;"><a class="ctl00_ContentPlaceHolder1_categoryCrumbs_1"
href="Catalog-MY-Category-name_1.aspx">MY Category name</a></td>
</tr></tbody>
</table></td><td><img src="App_Themes/gsg/images/icons/breadcrumb.gif" alt="">
</td>
</tr>
BTW - I have a lot of background with classic ASP, but am still feeling out .NET, so feel free to "dumb-down" your answers. Your help is appreciated!
-Carrie