Hi
I tried applying the code to display the folder beside the categories.. However the Count is not aligned with each category.. It appears below the category block..
here's what i have in module.css :
table.normal td
{
text-align: left;
vertical-align: top;
}
.RepositoryTitle
{
font-size: 14px;
font-weight: bold;
color: #333333;
}
.DNNTree span[id*="Categoriest"] {
background:url("/images/folder.gif") no-repeat scroll left center transparent;
font-size:9pt;
font-weight:bold;
padding:2px 0 2px 20px;
}
.DNNTree span:hover {
color:#4E4E4E;
}
here's what I have in dashboard.index.html :
<table class="normal" width="100%" cellspacing="0" cellpadding="0" borderwidth="0">
<tr width="100%" style="padding-bottom: 3px;">
<td align="left" width="75%" valign="middle">[TREE]</td>
<td align="right" width="25%" valign="middle">[COUNT]</td>
</tr>
</table>
pls help!