Hi,
Hopefully someone can help me out with the following:
I want to use a category list with sub categories on the side bar for navigation. The sub category should have an indent. I get this to work with the following code:
{exp:weblog:categories weblog="jobs" style="nested" status="open"}
<a href="http://{path=jobs}">{category_name}</a>
{/exp:weblog:categories}But I also want a drop down list for the categories and therefore use the following code:
<form name="catmenu" action="">
<select name="selcat">
<option value="">--Select Category--</option>
{exp:weblog:categories weblog="jobs" style="nested" status=>"open"}
<option value="{path=jobs}">{category_name}</option>
{/exp:weblog:categories}
</select>
</form>Unfortunatly it shows just a straight list with head and sub categories. I think it has to do with the css tags but tried to apply it without any luck.
Any help in this would be great.
Regard,
Tammo