eemanuelson
|
| Posted: 07/28/2003, 8:44 AM |
|
Has anyone been able to use the Directory/Path features to implement a useful navigation system for their website? I like the structure and ease of maintenance for paging and drilling down into categories but haven't been able to figure out how I can link the different categories to pages within my CCS site.
Any suggestions?
|
|
|
 |
Stewart Robinson
|
| Posted: 07/29/2003, 12:33 PM |
|
You need to use HTML tags in your data fields. Put an anchor to the page you want displayed and it will embed the link in its output.
For instance:
category_id category_name category_parent
1 Main Menu 0
2 News Services 1
3 <a href="http://www.cnn.com">CNN</a> 2
4 <a href="http://www.msn.com">MSN</a> 2
Hope this helps.
|
|
|
 |
|