Re: Category Dropdown Menu For vs 4.4.1
Garry, the drop down categories is working out great but do you know of a way to increase the size and make it wider? Some of the category names are being cut off. The code I am using is below.
Thank you for your help.
<select name="listCategories" onchange="window.location=this.options[selectedIndex].value">
<option value=""><font class="VertMenuItems">Select A Product Category</font></option>
{foreach from=$categories_menu_list item=c name=categories}
{if $c.order_by < 899 && $c.product_count ne 0}
<option value="home.php?cat={$c.categoryid}">{$c.category} </font></option>
{/if}
{/foreach}
</select>
|