We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 9130
    • 171 Posts
    A website done as volunteer work for a charity organization. It’s been up for a while and but keeps changing little by little as they always want to add things and I never have enough time.

    The main page (in hebrew) and the english version

    Any feedback or suggestion would be most welcome,
    Erez
      • 7231
      • 4,205 Posts
      Nice site. grin
        [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]
        • 26931
        • 2,314 Posts
        Hi there,

        nice site! i think the text floating on top of the images is not intendet?! screenshot attached. FF2 / win xp. cheers, j
        p.s.: hebrew type looks great smiley
          • 9130
          • 171 Posts
          Yes, the text and the pictures should not be mixed embarrassed
          This only happens in FF2 as I’ve tested it in IE6/7 ,FF3, Safari and Opera and they all seem to handle things properly. Any ideas how to fix it?
          Erez
            • 26931
            • 2,314 Posts
            Hi Erez,

            try to take out "overflow: hidden;" from ".ditto_introText p" ...works here with opera, ff2, ff3, safari3...couldn’t check with IE though.

            cheers, jan
              • 33337
              • 3,975 Posts
              Nice site! smiley

              Thanks for sharing with us.
                Zaigham R - MODX Professional | Skype | Email | Twitter

                Digging the interwebs for #MODX gems and bringing it to you. modx.link
                • 9130
                • 171 Posts
                Thanks everyone.

                sharkbait:
                Removing
                overflow: hidden
                leads to the articles text overflowing over the ’Read more’ link, you can see this happen on the english page where some of the text is a little too long.
                  • 26931
                  • 2,314 Posts
                  Hi,

                  this should work:

                  .ditto_text{
                        position: static;
                        min-height: 100px;
                        height:auto !important;
                        height: 100px;
                        padding-bottom: 1em;
                        margin-right:160px;
                  }
                  
                  .ditto_introText p{
                  	margin-top: 0 !important;
                  	margin-bottom: 5px !important;
                  	/*overflow: hidden;*/
                  	min-height: 4.5em;
                          height:auto !important;
                          height: 4.5em;
                  }
                  
                  .ditto_more{
                  	position: static;
                  	bottom: 1em;
                  	right: 160px;
                  	*right: 0px; /* ie hack */
                  }
                  


                  if there will be more text in the "ditto_introText" paragraph (or increased font-size), the "read more" link will be pushed downwards and the whole ditto-textbox will expand...i guess that’s how it should be. if you want the textbox to wrap around the thumbnail, get rid of the 160px margin. i couldn’t check the IEs...

                  j
                    • 18940
                    • 152 Posts
                    Pretty cool looking dynamic website smiley

                    How did you manage too show down the page you’re actually on, like:

                    Galleries » advanced study
                    on the content top of:
                    http://www.bikes4all.org.il/en/galleries/229.html

                    is it something like:
                    [(site_name)] - [*pagetitle*]
                    but with different pages or? Please help I love this function laugh
                      Quality doesn't need a big signature.
                      • 4310
                      • 2,310 Posts
                      That’s the Breadcrumbs snippet, available with the standard demo content install of MODx.