We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 14324
    • 32 Posts
    How do I fix this error on this page http://www.jodee.biz/index.php?id=17 left column doesn’t do like the right column and I have it at height 100%
      • 18397
      • 3,250 Posts
      Could you please explain


      doesn’t do like the right column

      in more detail since I don’t see a problem other than the right column being blank.
        • 14324
        • 32 Posts
        What I am meaning is that the column doesn’t go the length of the page in the same color like on this page for example http://www.jodee.biz/index.php?id=13
          • 18397
          • 3,250 Posts
          I get this in FF1.0.7:





          I believe I see what you are talking about when viewing the page in IE. Weird.

          Best way to find out what is the problem is to strip all background color and images from the css temporarily (MAKE SURE TO BACKUP smiley ) and then add them back one at a time until the problem occurs (thats your culprit).
          • It’s a common problem. Trying to use "height:100%" will be problematic at best in different browsers.
            Here’s the solution. I use it all the time.

            http://www.alistapart.com/articles/fauxcolumns
              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
              • 14324
              • 32 Posts
              Susan
              embarrassed I am still not sure if I am understanding how to do it but if I read it right i just make a background gif  of the colors I want???
              What I would like is for it to do like your theo template Quote from: sottwell at Oct 15, 2005, 06:08 AM

              It’s a common problem.  Trying to use "height:100%" will be problematic at best in different browsers.
              Here’s the solution.  I use it all the time.

              http://www.alistapart.com/articles/fauxcolumns
                • 16207
                • 29 Posts
                Have you tried setting the backgorund of <div id="left"> to
                background: #color url(assets/images/backimg.gif) repeat 0 0;

                in your css file?

                Faux Columns from ALA are good for fixed width layouts and I don’t know if you can use them in the variable width layout... I can be wrong wink
                  • 14324
                  • 32 Posts
                  sad I decided to just strip out the color on the right and left column for now until I learn more as I am just learning css
                    • 14324
                    • 32 Posts
                    are you talking about this section here
                    #outer_wrapper {
                    background: #fff url(../images/background_3.gif) repeat-y left;
                    }
                    #wrapper {
                    background: url(../images/background_2.gif) repeat-y right;
                    }

                    #container {
                    width: 100%;
                    float: left;
                    margin-right: -200px;
                    background: url(../images/background_2.gif) repeat-y right;
                    }
                    #content {
                    margin-right: 200px;
                    background: url(../images/background_3.gif) repeat-y left;

                    Quote from: koolavy at Oct 15, 2005, 02:19 PM

                    Have you tried setting the backgorund of <div id="left"> to
                    background: #color url(assets/images/backimg.gif) repeat 0 0;

                    in your css file?

                    Faux Columns from ALA are good for fixed width layouts and I don’t know if you can use them in the variable width layout... I can be wrong  wink
                      • 16207
                      • 29 Posts