We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 21560
    • 145 Posts
    Edited in 2011 ;-) And after years of using (since 2007) MODx, I only love it more. Revolution for the win!

    http://nimja.com

    And that is the result with all my work on it, my music, graphics, stories, poetry and lots more.

    Feedback anyone?
    Also of possible great interest (to some) is my comment system. An Ajax based light comment system that will still work with disabled JS: Threads 2.0

    Leave a comment there if you dare!


    And I’m so nice?
    Out of the kindness of my heart or rather a surprising lack of laziness I’ve done some things for the nice MODx community.

    The snippet to generate PDF’s on http://nimja.com/pdf has been nicely put into the Snippets forum. You can see it here: Dynamic PDF

    I’ve made many code-enhancements to my site as well. Like a dynamic redirect & search.

    So http://nimja.com/frozen-youth goes to /stories/frozen-youth
    While http://nimja.com/nevermore goes to /search/nevermore and then searches.
      [font=Times]Comics, stories, music, graphics, games and more! http://Nimja.com
    • Very nice! I like your music.
        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
        • 7231
        • 4,205 Posts
        Thats a very pleasant site. I like it. There is a lot of work in there.

        I really like the transparent background for the content box, that is a cool effect. How did you do that?
          [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't know what it is.
          Do you, Mr. Jones? - [bob dylan]
        • Very polished site indeed - and lots of talent wrapped up in it as well. Love some of your photo work and the music is great as well, keep up the good work!

          That transparent background is pretty nifty, would love to know how you did that - every attempt I’ve had with semi-transparent backgrounds has looked, well, not good wink
            Garry Nutting
            Senior Developer
            MODX, LLC

            Email: [email protected]
            Twitter: @garryn
            Web: modx.com
            • 21560
            • 145 Posts
            The transparent background... Well it’s kind of a trick. I’m using simple transparent PNG’s but I’m using an ... less then elegant solution to get IE6 to display it correctly.

            The stuff that makes it work while still keeping CSS standard compliant.

            This only loads a specified CSS file for IE
            <!-- Fix for IE -->
            <!--[if IE 6]>
            <link rel="stylesheet" type="text/css" href="assets/templates/nimja/style_ie.css" media="screen" />
            <![endif]-->


            Then the CSS
            .Menu .Top {
            	background: none;
            	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, src=assets/templates/nimja/menu-top.png, sizingMethod=scale);
            }

            What it does: Set background to NONE and then add a background using MS Alpha DX tool thingy. (trust me, that’s all you really want to know)

            Of course there are a few important design issues with transparent backgrounds as well. The readability of the text is quite important for stuff like that. So I chose for a low-contrast background with a dark, not very transparent black as a base for the site. And then light text-color again.


            Anyway, thanks for the feedback. I’m hoping to keep my high standard of all I create. Including my, by now, very long story.
              [font=Times]Comics, stories, music, graphics, games and more! http://Nimja.com
              • 21560
              • 145 Posts
              No one curious about the PDF functionality?
                [font=Times]Comics, stories, music, graphics, games and more! http://Nimja.com
                • 7231
                • 4,205 Posts
                No one curious about the PDF functionality?
                I sure am. I have been busy with other stuff, but since you mention it I am very curious. Is the pdf generated dynamically straight from the modx documents? To be able to create a pdf on the fly from modx documents would be nice.
                  [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]
                  • 7455
                  • 2,204 Posts
                  I realy like the site

                  And I am realy wantingto know how you do the pdf thing!

                  I am searching for a good working pdf generator for ages now. Soo please let us know you secret.

                  Dimmy
                    follow me on twitter: @dimmy01
                    • 21560
                    • 145 Posts
                    Well of course it’s created dynamically. What kind of crazy site-designer do you take me for wink

                    In fact, I just wrote a small snippet that loads the contents from a parent in to a PDF, with a PDF file used as a template for each page.

                    Very simple.

                    Of course I used FPDI and it’s companion FPDF_template as a base. So I didn’t have to write PDF’s myself.

                    Download the framework at http://www.setasign.de/products/pdf-php-solutions/fpdi/

                    If needs be I can share how i did the PDF thing. And I modified the FPDF_template to allow for ’automatic templating’ but that’s about it.
                      [font=Times]Comics, stories, music, graphics, games and more! http://Nimja.com
                    • I think that this would be a very popular Wiki entry.
                        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