In the EE docs there is a method of displaying a dropdown list of categories but this method uses Javascript.
<form name="catmenu" action="">
<select name="selcat">
<option value="">--Select Category--</option>
{exp:channel:categories channel="yourchannel" style="linear"}
<option value="{path='channel'}">{category_name}</option>
{/exp:channel:categories}
</select>
</form>Can this be done without using Javascript? If so how, I have tried different paths but i can’t get it to display the single category page.