We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 4310
    • 2,310 Posts
    If you’re going to change menus I’d suggest you find one you like, either horizontal or vertical.
    Most now are in the unordered list format i.e.
    <ul>
    <li><a href="http://somewhere.com/one.html">One</a></li>
    <li><a href="http://somewhere.com/two.html">Two</a></li>
    <li><a href="http://somewhere.com/three.html">Three</a></li>
    </ul>

    Get the CSS stylesheet that comes with it.
    From there you can build the Wayfinder chunks to create/style it.
    One of the great things about Wayfinder is that it can create any menu.
    Look at theese links:

    http://www.crickweb.co.uk
    http://www.3913.co.uk
    http://www.ruthlyne.co.uk

    the menus are all Wayfinder

    David
      • 11041
      • 82 Posts
      I do like the menu on the last link (ruthlyne) but as far as horizontal menu’s go I rpefer plain text as they would only be backup menu’s.

      I dont like these ones that appear as buttons and then give you like a 3 layer thing...
        • 4310
        • 2,310 Posts
        Tom,

        What do you mean back up menus?

        Show me the sort of menu you want and I’ll see if I can do it!

        David
          • 11041
          • 82 Posts
          www.hsnetwork.org

          If you look at the footer, within the blue bar.

          It will take me a little while anyway to port the site over and have it looking anywhere reasonable.

          And before this time I want to see if the SMF integration module still works on both this the latest version of MODx and the latest version of SMF (as it has recently changed the way its API’s works I believe).

          Then on top of this I need to get to work on loading up the flash vids and trying to get the code to validate... Its all good fun really smiley
            • 4310
            • 2,310 Posts
            Hi Tom,

            MODx uses a tableless CSS based design, so you’d be looking to port over your existing table based design?

            The menu @ ruthlyne only uses this call:
            [[Wayfinder?startId=`0` &level=`1`]] 

            Most of the work is done by the CSS:
            .navigation ul{ width:125px; list-style:none; float:left; padding:0px 0 0 0px; border-top: 2px solid #C0DFFD; margin:36px 0 0 0px; }
            .navigation li{ border-bottom: 2px solid #C0DFFD; font: 11px Verdana, Arial, Helvetica, sans-serif; }
            .navigation li a { font: 11px Verdana, Arial, Helvetica, sans-serif; color: #666666; letter-spacing:.1em; text-decoration: none; padding:8px 6px 0px 46px; background: url(mm_arrow2.gif) no-repeat 35px 45%; border: thin none #CCCCCC; display:block;  }
            .navigation li a:hover { background: #ffffff url(mm_arrow2.gif) no-repeat 34px 45%; color:#000000; }
            

            Which is from an external stylesheet called from the header of the template.
            The ruthlyne site was an old table based design, she wanted to keep the layout the same which did cause a few headaches along the way.
            To be honest it would have been quicker to start from scratch, but the customer is always right!
            It might be worth testing MODx with one of the standard layouts and trying the SMF integration etc. before going to the trouble of porting your design.
            For the flash video you can get it to validate using the ActiveContent javascript ( my current method ) or possibly with swfObject.
            I found it a steep learning curve with MODx but ultimately very worthwhile!

            Cheers,

            David
              • 28042 ☆ A M B ☆
              • 24,524 Posts
              Quote from: bunk58 at Jan 05, 2008, 04:34 PM

              MODx uses a tableless CSS based design, so you’d be looking to port over your existing table based design?
              MODx does not put any restrictions at all on what kind of design you use.

              Tables: http://modxcms.com/Sunset-Template-1178.html

              Wacky CSS no tables: http://modxcms.com/Mondrian-Template-1175.html (used on my loripsum site as the home page)
                Studying MODX in the desert - http://sottwell.com
                Tips and Tricks from the MODX Forums and Slack Channels - http://modxcookbook.com
                Join the Slack Community - http://modx.org
                • 4310
                • 2,310 Posts
                I stand corrected Susan.
                I should have said "supports" tableless designs!
                Maybe even "encourages"?
                David grin
                  • 11041
                  • 82 Posts
                  Lol, now now didnt want to start any arguements smiley

                  I prefer tabled designs to be fair. Ive never been a whizz at html, cgi, css, javascript, php etc etc. I may understand html to a degree but I have my faults and ultimately short fuses, hence tables work easier. It also makes it easier for me from a visual pov to see how the site may look once done where as with div’s you only get to see it once the code is in place and then trya nd get it to look how you want.

                  As for getting the SMF integration module to work with a current template, well I just want to see if the integration module still works. I am assuming I would still have to style SMF myself (with problems) but tis the integration I am interested in.

                  If I am completely honest with you I started looking at Modx after seeing a few snippets which may benefit me. As I of no use with php this makes more sense than trying to convert them to work in etomite (for me it would never work lol).

                  Anyway, background images are ported over and there is some colour back, and how does that swfplayer thing work, I tried it on etomite and it simply wouldnt work. Speaking of which I like the controls which are with the flash I have and would prefer to keep them.

                  Regards,

                  Tom.
                    • 7231
                    • 4,205 Posts
                    MyRowTpl =
                    <a [+wf.linktext+] href="[+wf.link+]">[+wf.linktext+]</a>

                    I am sorry, there is a stupid mistake in this chunk (surprised no one cought it shocked )

                    It should read:
                    <a [+wf.classes+] href="[+wf.link+]">[+wf.linktext+]</a>

                    My mistake, sorry. Once you make this change the highlight class should work as expected.

                      [font=Verdana]Shane Sponagle | [wiki] Snippet Call Anatomy | MODx Developer Blog | [nettuts] Working With a Content Management Framework: MODx

                      Something is happening here, but you don&#39;t know what it is.
                      Do you, Mr. Jones? - [bob dylan]
                      • 11041
                      • 82 Posts
                      Hmm,

                      What did that change? As it still looks and reads the same?