Stupid CSS issue

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mrkris
    Confirmed User
    • May 2005
    • 2737

    #1

    Stupid CSS issue

    Figured someone here would know how to fix this.

    http://www.direbliss.com login/pass is mrkris / mrkris

    Notice the sidebar on the left doesn't stretch to the bottom? Not sure how to fix this, still rather new to css and the sort. Any help would be much appreciated.

    PHP-MySQL-Rails | ICQ: 342500546
  • bangman
    Confirmed User
    • Sep 2004
    • 5283

    #2
    Have you tried setting a height attribute?
    Code:
    #class {
    background: gray;
    height: 600px;
    width: 150px;
    }
    
    <div id="class">text</div>
    Something like that.
    - David Hall
    ICQ: 312744199

    Comment

    • bangman
      Confirmed User
      • Sep 2004
      • 5283

      #3
      If that doesn't work do something like this for the whole page:
      Code:
      #page {
      background: url(bg.gif) repeat-y;
      }
      Make bg.gif a 600x1 (or whatever) with 25% of the left side gray, the rest white.
      - David Hall
      ICQ: 312744199

      Comment

      • bangman
        Confirmed User
        • Sep 2004
        • 5283

        #4
        If you're still having trouble hit me up and i'll do it for you.
        - David Hall
        ICQ: 312744199

        Comment

        • mrkris
          Confirmed User
          • May 2005
          • 2737

          #5
          yeah i tried setting the height, the only problem is it is dynamic content so its size could change. if i could do without an image, i would be happy :-\

          PHP-MySQL-Rails | ICQ: 342500546

          Comment

          Working...