Is this fluid or liquid or is it a mess?

Discussion in 'HTML & Website Design' started by HDaddy, Dec 30, 2007.

  1. #1
    Hi!

    I´m practising to make a liquid or a fluid layout(don´t know if they are the same)

    So i was wondering could you check the test page and the css and tell me if i´m going to the bushes with this one.

    here´s the link to the test site http://koti.mbnet.fi/thinner/testi/

    and here´s the css http://koti.mbnet.fi/thinner/testi/testi.css

    thanks in advance and have happy new year !

    HDaddy
     
    HDaddy, Dec 30, 2007 IP
  2. Themebot

    Themebot Member

    Messages:
    51
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    48
    #2
    You've got the fluid part right. One thing to keep in mind is that with the technique you are using, if there is an image or block level item in the content area that is somewhat wide it will cause the content column to jump down below the left sidebar if the browser width is not great enough to contain the whole design.
     
    Themebot, Dec 30, 2007 IP
  3. shallowink

    shallowink Well-Known Member

    Messages:
    1,218
    Likes Received:
    64
    Best Answers:
    2
    Trophy Points:
    150
    #3
    It's liquid alright. Just resize your browser window manually and watch how it flows. If it does, it's liquid. Has some good points but it gets tricky to keep elements bounded without resorting to tricks.
     
    shallowink, Dec 30, 2007 IP
  4. HDaddy

    HDaddy Active Member

    Messages:
    287
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    60
    #4
    Thanks for the looksee. Maybe i will someday use a "liquid" layout for a site. I usually design for 800x600+ with fixed width. But it´s good to learn new things.
     
    HDaddy, Dec 30, 2007 IP
  5. willhaynes

    willhaynes Active Member

    Messages:
    1,197
    Likes Received:
    34
    Best Answers:
    0
    Trophy Points:
    90
    #5
    ya, as themebot said you if you resize it enough, one of the content menu's will drop below another one. To prevent this you just add:

    min-width : 800px ;
    Code (markup):
    to #container,
    that way, if anyone resizes their browser smaller then 800px, it doesn't create a mess.
     
    willhaynes, Dec 30, 2007 IP
  6. drewbe121212

    drewbe121212 Well-Known Member

    Messages:
    733
    Likes Received:
    20
    Best Answers:
    0
    Trophy Points:
    125
    #6
    Please note min-width isn't used by IE.
     
    drewbe121212, Dec 30, 2007 IP
  7. willhaynes

    willhaynes Active Member

    Messages:
    1,197
    Likes Received:
    34
    Best Answers:
    0
    Trophy Points:
    90
    #7
    yes, but it's still good to add for anyone using other browsers.
     
    willhaynes, Dec 30, 2007 IP