We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 26104
    • 36 Posts
    Hello,

    In the ModX homepage there is a nice footermenu, not build by <li> items, but just with spaces and | to seperate the items.

    Is this menu also generated by some plugin? Because i’d like to do it the same way smiley

    I know I could add it to a chunk and include the chunk through a TV. But maybe there is a simple or other solution that stays flexible if the user adds a new page for instance smiley
    • The footer on the MODx site is just a static chunk... nothing magical going on smiley.
        Ryan Thrash, MODX Co-Founder
        Follow me on Twitter at @rthrash or catch my occasional unofficial thoughts at thrash.me
        • 26104
        • 36 Posts
        Well, then i’ll write something simple myself... smiley

        Thanx anyways
          • 7455
          • 2,204 Posts
          You could use dropmenu as easy

          I used it here and used a image for seperator but you could also use border left or right and exclude the .last class by setting border:0

          hope this helps

          Greets Dimmy
            follow me on twitter: @dimmy01
            • 26104
            • 36 Posts
            Quote from: Dimmy at Jun 01, 2006, 01:08 PM

            You could use dropmenu as easy

            I used it here and used a image for seperator but you could also use border left or right and exclude the .last class by setting border:0

            hope this helps

            Greets Dimmy

            Could you pass me the complete call to the snippet? Still can’t get it completely right!

            BTW: Leuk dat hier ook NL’ers rondlopen smiley
              • 7455
              • 2,204 Posts
              just like this:

              [!DropMenu?startDoc=7!]


              I have set the level limit insite the snippet

              and here the css

              
              /* Footer */
              
              #footer ul.topnav{
              padding:0;
              margin:0;
              }
              
              #footer ul.topnav li{
              background-image:url("images/dot.gif");
              background-repeat:no-repeat;
              background-position:right bottom;
              display:inline;
              font-size:12px;
              font-family:arial;
              font-weight:bold;
              color:#fff;
              padding-right:11px;
              padding-left:2px;
              margin:0;
              }
              
              
              
              #footer ul.topnav li a{
              text-decoration:none;
              color:#fff;
              }
              
              #footer ul.topnav li a:hover{
              text-decoration:none;
              color:#777;
              }
              
              #footer ul.topnav li.here{
              text-decoration:underline;
              padding-left:0px
              }
              
              #footer ul.topnav li.last{
              background-image:none;
              padding-right:0px
              }
              


              hope this helps you

              (I noticed that in the latest version of modX that the Dropmenu is not generating a .here class for the first level I copyed an older version from 0.9.1, but that dit not do the trick, is there a change on how modx active is called in version 0.9.2.1?
                follow me on twitter: @dimmy01