Announcement

Collapse
No announcement yet.

drop down box for top level sections

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    drop down box for top level sections

    Hi

    I am using clean layout 4.

    Is there a simple way to create a drop down box comprising all top level sections (or all top level and sub-sections) under the search button and directly above the section listing

    That way customers would have their choice - scrolling the sections or using the drop down box.

    Thanks,
    Bonnie
    www.bonnies-gift-shop.com
    Unique Gifts & Home Decor
    Retail/Wholesale/Drop Shipping
    www.bonniesgifts.com
    Gift Baskets Gift Ideas Unique Gifts
    Retail/Drop Shipping

    #2
    See www.rouxel.cwc.net/actinicstuff.html where you can get a choice of 2 dynamic drop-down menus for Actinic. They're NorTree and NorCascade.

    Norman
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment


      #3
      drop down box for sections

      Originally posted by NormanRouxel
      See www.rouxel.cwc.net/actinicstuff.html where you can get a choice of 2 dynamic drop-down menus for Actinic. They're NorTree and NorCascade.

      Norman
      Hi Norman

      Wow! Sorry, I'm new to this and it's all greek. Isn't there a simpler application to achieve drop down boxes
      Thanks,
      Bonnie
      www.bonnies-gift-shop.com
      Unique Gifts & Home Decor
      Retail/Wholesale/Drop Shipping
      www.bonniesgifts.com
      Gift Baskets Gift Ideas Unique Gifts
      Retail/Drop Shipping

      Comment


        #4
        You can always build your own drop down menu using this code:

        <script>
        <!--
        function goto(choose){
        var selected=choose.options[choose.selectedIndex].value;
        if(selected != ""){
        selected="http://www.yourdomain.com/acatalog/"+selected;
        location.href=selected;
        }
        }
        //-->
        </script>
        <SELECT onChange="goto(this);">
        <option value="section1.html">Section 1 name</option>
        <option value="section2.html">Section 2 name</option>
        etc
        etc
        </SELECT>

        Mike
        -----------------------------------------

        First Tackle - Fly Fishing and Game Angling

        -----------------------------------------

        Comment

        Working...
        X