CSS Halp Pls...

Out of context: Reply #8

  • Started
  • Last post
  • 8 Responses
  • slappy0

    I would set the left hand column to be a repeating background image.

    body {
    background-image: url(file:/filepath);
    background-repeat: repeat-y;
    background-position: left top;
    }

    And put the right hand content into a scrollble div.
    html {
    height:100%;
    overflow:hidden;
    }
    div.contentscroller {
    position:relative;
    width:100%;
    height:100%;
    overflow:scroll;
    float:left;
    margin-left:[size of left hand column]
    }
    That should work I think.

    • You will need to put the left hand colomn into a div too obviously...slappy
    • interesting solutioncapsize

View thread