
Originally Posted by
kittytickles
I'd like to create a dynamic Manufacturers drop-down, with the name "Designers" instead of "Manufacturers". Please let me know how I can do this within one of the "li" tags. It would be awesome if you can provide the code within the "li" tags for implementation.
Thanks!
I haven't added manufacturer capabilities dynamically yet. So you'll have to do this manually. You can use the backbone of thi code below, and just put your own links and page names in:
Code:
<li class="submenu"><a href="index.php?main_page=index">Information</a>
<ul class="level2">
<li><a href="index.php?main_page=shippinginfo">Shipping Info</a></li>
<li><a href="index.php?main_page=privacy">Privacy Policy</a></li>
<li><a href="index.php?main_page=conditions">Conditions of Use</a></li>
<li><a href="index.php?main_page=about_us">About Us</a></li>
<li><a href="index.php?main_page=site_map">Site Map</a></li>
<li><a href="index.php?main_page=gv_faq">Gift Certificate FAQ</a></li>
<li><a href="index.php?main_page=discount_coupon">Discount Coupons</a></li>
<li><a href="index.php?main_page=unsubscribe">Newsletter Unsubscribe</a></li>
</ul>
</li>